library(dplyr) # for data manipulation
library(psych) # for descriptives
library(ggplot2) # for plotting
library(gridExtra) # for arranging plots
library(kableExtra) # for creating tables
library(tidyr) # for data manipulation
library(xlsx) # for reading and writing xlsx files
library(tableone) # for descriptives
library(extrafont)
select <- dplyr::select
describe <- psych::describe
options(knitr.kable.NA = '')
#### ABCD MRI Info ####
mri_info <- read.csv(paste0(file_path,"imaging/mri_y_adm_info.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### Cortical Volume ####
mri_y_smr_vol_dsk <- read.csv(paste0(file_path,"imaging/mri_y_smr_vol_dsk.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### Cortical thickness ####
mriCortThick <- read.csv(paste0(file_path,"imaging/mri_y_smr_thk_dsk.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### Cortical Area ####
mriCortArea <- read.csv(paste0(file_path,"imaging/mri_y_smr_area_dsk.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### Sulcal Depth ####
mriSulcalDepth <- read.csv(paste0(file_path,"imaging/mri_y_smr_sulc_dsk.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### Freesurfer reconstruction quality control measures ####
fsurf_QC <- read.csv(paste0(file_path,"imaging/mri_y_qc_man_fsurf.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### Elyounssi and Roffman (2023) quality control ####
mri_y_qc_incl <- read.csv(paste0(file_path,"imaging/mri_y_qc_incl.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
# sMRI morphometric and image intensity measures
mri_subCortVol_aseg <- read.csv(paste0(file_path,"imaging/mri_y_smr_vol_aseg.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### ABCD Screener ####
p_screen <- read.csv(paste0(file_path,"abcd-general/abcd_p_screen.csv"))
#### ABCD Parent Demographics Survey ####
pdem02 <- read.csv(paste0(file_path,"abcd-general/abcd_p_demo.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
# Sex at birth
# demo_sex_v2 - What sex was the child assigned at birth, on the original birth certificate?
#1 = Male; 2 = Female; 3 = Intersex-Male; 4 = Intersex-Female; 999 = Don't know ; 777 = Refuse to answer
pdem02$sex <- car::recode(pdem02$demo_sex_v2, "1= 'm';2='f'; else= NA")
#Total Combined Income
#1= Less than $5,000; 2=$5,000 through $11,999; 3=$12,000 through $15,999; 4=$16,000 through $24,999;
#5=$25,000 through $34,999; 6=$35,000 through $49,999; 7=$50,000 through $74,999; 8= $75,000 through $99,999;
#9=$100,000 through $199,999; 10=$200,000 and greater. 999 = Don't know
pdem02$demo_comb_income_v2 <- car::recode(pdem02$demo_comb_income_v2,"c(777,999)=NA")# Combined income
# Caregiver education: demo_prnt_ed_v2
# Partner education: demo_prtnr_ed_v2
#0 = Never attended/Kindergarten only; 1 = 1st grade; 2 = 2nd grade; 3 = 3rd grade;
#4 = 4th grade; 5 = 5th grade; 6 = 6th grade; 7 = 7th grade; 8 = 8th grade;
#9 = 9th grade; 10 = 10th grade; 11 = 11th grade; 12 = 12th grade; 13 = High school; 14 = GED or equivalent
#15 = Some college; 16 = Associate degree: Occupational; 17 = Associate degree: Academic;
#18 = Bachelor's degree (ex. BA); 19 = Master's degree (ex. MA); 20 = Professional School degree (ex. MD)
#21 = Doctoral degree (ex. PhD); 777 = NA
pdem02$demo_prnt_ed_v2 <- car::recode(pdem02$demo_prnt_ed_v2,"c(777,999)=NA") #Caregiver education
pdem02$demo_prtnr_ed_v2 <- car::recode(pdem02$demo_prtnr_ed_v2,"c(777,999)=NA") #Partner education
# if partner education is missing, use caregiver education
pdem02$demo_caregiver_ed <- rowMeans(cbind(pdem02$demo_prtnr_ed_v2, pdem02$demo_prnt_ed_v2))
pdem02$demo_caregiver_ed <- ifelse(is.na(pdem02$demo_caregiver_ed),pdem02$demo_prnt_ed_v2, pdem02$demo_caregiver_ed)
# What race do you consider the child to be
# Recoding to White vs non-white
pdem02$demo_race <- ifelse(
pdem02 %>% dplyr::select(demo_race_a_p___11:demo_race_a_p___25) %>% rowSums(na.rm = F)==0,0,1
)
# Do you consider the child Hispanic/Latino/Latina
#0='Latinx',1 =non-Latinx
pdem02$demo_ethnicity <- car::recode(pdem02$demo_ethn_v2, "1=0; 2 = 1; 999=NA; 777=NA")
pdem02$demo_race_ethnicity <- NA
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___10==1] <- 'White'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___11==1] <- 'Black'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___12==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___13==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___14==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___15==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___16==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___17==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___18==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___19==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___20==1] <- 'Other'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___21==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___22==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_race_a_p___23==1] <- 'Asian'
pdem02$demo_race_ethnicity[pdem02$demo_ethn_v2==1] <- "Hispanic"
pdem02$demo_race_ethnicity <- factor(pdem02$demo_race_ethnicity)
pdem02$demo_race_ethnicity <- factor(pdem02$demo_race_ethnicity,
levels = c("White", "Hispanic", "Black", "Asian", "Other"))
#Other(e.g. Native American, Alaska Native, Pacific Islander)
#demo_prnt_marital_v2
#Are you now married, widowed, divorced, separated, never married or living with a partner?
# 1 = Married Casado(a)
# 2 = Widowed Viudo(a)
# 3 = Divorced Divorciado(a)
# 4 = Separated Separado(a)
# 5 = Never married Nunca me he casado
# 6 = Living with partner
# Recoding for with x without partner
pdem02$demo_prnt_marital <- car::recode(pdem02$demo_prnt_marital_v2,"c(1,6)=1; c(2,3,4,5)=0;777=NA")
#### ABCD ACS Post Stratification Weights ####
acspsw03 <- read.csv(paste0(file_path,"abcd-general/abcd_y_lt.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### Parent Diagnostic Interview (KSADS-5)####
dibf01 <- read.csv(paste0(file_path,"mental-health/mh_p_ksads_bg.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
dibf01$Adopted_child <- ifelse(dibf01$kbi_p_c_guard___5==1|dibf01$kbi_p_c_guard___6==1|dibf01$kbi_p_c_guard___7==1,1,0)
#### ABCD Parent Child Behavior Checklist Scores Aseba (CBCL) ####
cbcl <- read.csv(paste0(file_path,"mental-health/mh_p_cbcl.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### ABCD Parent Family Environment Scale-Family Conflict Subscale Modified from PhenX (FES) ####
fes02 <- read.csv(paste0(file_path,"culture-environment/ce_p_fes.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
fes02$fes_fam_env_score <-
fes02 %>% dplyr::select(
fam_enviro1_p ,
fam_enviro2r_p ,
fam_enviro3_p ,
fam_enviro4r_p ,
fam_enviro5_p ,
fam_enviro6_p ,
fam_enviro7r_p ,
fam_enviro8_p,
fam_enviro9r_p
) %>% rowSums() # sscep01$fes_p_ss_fc same as fes02$fes_fam_env_score
#### ABCD Sum Scores Culture & Environment Parent ####
# Culture and environment summary scores - parent surveys
sscep01 <- read.csv(paste0(file_path,"culture-environment/ce_p_nsc.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
# Residential HistoryDerived Scores
led_l_adi <- read.csv(paste0(file_path,"linked-external-data/led_l_adi.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### ABCD Parent Screen Time Survey (STQ) ####
# Screen time utilization - parent
stq01 <- read.csv(paste0(file_path,"novel-technologies/nt_p_stq.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
stq01$Screentime_week <- stq01$screentime1_p_hours*60 + stq01$screentime1_p_minutes
stq01$Screentime_weekend <- stq01$screentime2_p_hours*60 + stq01$screentime2_p_minutes
stq01$Average_Screentime <- rowMeans(stq01[,c("Screentime_week","Screentime_weekend")],na.rm = F)/60
stq01$Average_Screentime <- ifelse(
stq01$Average_Screentime > quantile(stq01$Average_Screentime, probs = c(.995), na.rm = T),
quantile(stq01$Average_Screentime, probs = c(.995), na.rm = T), stq01$Average_Screentime
) # winsorizing outliers to 99.5 percentile
#### ABCD Parent Adult Self Report Scores Aseba (ASR)
asrs01 <- read.csv(paste0(file_path,"mental-health/mh_p_asr.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### ABCD Youth Edinburgh Handedness Inventory Short Form #### abcd_ehis01
abcd_ehis01 <- read.csv(paste0(file_path,"neurocognition/nc_y_ehis.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
abcd_ehis01$Handedness <- car::recode(abcd_ehis01$ehi_y_ss_scoreb,"1='1.right' ; 2='2.left'; 3='3.mixed'")
#### Trauma exposure ####
ptsd01 <- read.csv(paste0(file_path,"mental-health/mh_p_ksads_ptsd.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
ptsd01$Exp_trauma <- ifelse(
ptsd01 %>% dplyr::select(ksads_ptsd_raw_754_p:ksads_ptsd_raw_770_p) %>% rowSums(na.rm = F) >0, 1, 0
)
#### ABCD Youth NIH TB Summary Scores ####
tbss01 <- read.csv(paste0(file_path,"neurocognition/nc_y_nihtb.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
#### ABCD Developmental History Questionnaire ####
dhx01 <- read.csv(paste0(file_path,"physical-health/ph_p_dhx.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
# Unplanned Pregnancy
dhx01$devhx_6_p <- ifelse(dhx01$devhx_6_p==999,NA, dhx01$devhx_6_p ) # 1 = planned pregnancy
dhx01$devhx_6_p <- car::recode(dhx01$devhx_6_p, "1=0;0=1") # 1 = planned pregnancy #Rec to 1 = unplanned pregnancy
dhx01$devhx_5_p <- ifelse(dhx01$devhx_5_p==999,NA, dhx01$devhx_5_p ) # Does your child have a twin? 1 =yes
# C-section
dhx01$devhx_13_3_p <- ifelse(dhx01$devhx_13_3_p==999,NA, dhx01$devhx_13_3_p ) # 1 = Yes; 0 = No; 999 = Don't know
# Gestational weeks
# devhx_12a_p Was the child born prematurely? 1 = Yes ; 0 = No
# devhx_12_p About how many weeks premature was the child when they were born?
#1 = 1; 2 = 2; 3 = 3; 4 = 4; 5 = 5; 6 = 6; 7 = 7; 8 = 8; 9 = 9; 10 = 10; 11 = 11; 12 = 12;
#13 = Greater than 12/; 999 = Don't know
#example: full term = 40 weeks, born at 36 weeks = 4 weeks premature, born at 32 weeks = 8 weeks premature
#dhx01$devhx_12a_p %>% propfunc()
dhx01$devhx_12a_p <- car::recode(dhx01$devhx_12a_p, "999=NA")
dhx01$GestationalAge <- 40 - ifelse(is.na(dhx01$devhx_12_p) & dhx01$devhx_12a_p == 0,0, dhx01$devhx_12_p )
dhx01$A_Burden_Gestational_Age <- ifelse(dhx01$GestationalAge<37, 1,0)
dhx01$A_Burden_Gestational_Age_2 <- ifelse(dhx01$devhx_12_p==999 & dhx01$devhx_12a_p==1,NA,dhx01$A_Burden_Gestational_Age)
# Participants who answered yes to "preterm"(1), but did not provide a number of weeks (999),
# are currently in the A_Burden_Gestational_Age==1 group. They were dropped from main analysis
dhx01$birth_weight_oz <- ifelse(is.na(dhx01$birth_weight_oz), 0, dhx01$birth_weight_oz)
dhx01$birth_weight_g <- dhx01$birth_weight_lbs *453.592 + dhx01$birth_weight_oz *28.3495
# Tobacco
dhx01$devhx_8_tobacco <- ifelse(dhx01$devhx_8_tobacco==999,NA, dhx01$devhx_8_tobacco)
#propfunc(dhx01$devhx_8_tobacco)
dhx01$devhx_9_tobacco <- ifelse(dhx01$devhx_9_tobacco==999,NA, dhx01$devhx_9_tobacco)
#propfunc(dhx01$devhx_9_tobacco)
#Alcohol
dhx01$devhx_8_alcohol <- ifelse(dhx01$devhx_8_alcohol==999,NA, dhx01$devhx_8_alcohol)
#dhx01$devhx_8_alcohol %>% propfunc()
dhx01$devhx_9_alcohol <- ifelse(dhx01$devhx_9_alcohol==999,NA, dhx01$devhx_9_alcohol)
#dhx01$devhx_9_alcohol %>% propfunc()
#Marijuana
dhx01$devhx_8_marijuana <- ifelse(dhx01$devhx_8_marijuana==999,NA, dhx01$devhx_8_marijuana)
#dhx01$devhx_8_marijuana%>% propfunc()
dhx01$devhx_9_marijuana <- ifelse(dhx01$devhx_9_marijuana==999,NA, dhx01$devhx_9_marijuana)
#dhx01$devhx_9_marijuana %>% propfunc()
# Pregnancy Complications
# devhx_10a3_p Severe nausea and vomiting extending past the 6th month or accompanied by weight loss
# devhx_10b3_p Heavy bleeding requiring bed rest or special treatment
# devhx_10c3_p Pre-eclampsia, eclampsia, or toxemia?
# devhx_10d3_p Severe gall bladder attack?
# devhx_10e3_p Persistent proteinuria
# devhx_10f3_p Rubella during first 3 months of pregnancy
# devhx_10g3_p Severe anemia
# devhx_10h3_p Urinary tract infection
# devhx_10i3_p Pregnancy-related diabetes
# devhx_10j3_p Pregnancy-related high blood pressure
# devhx_10k3_p Previa, abruptio, other problems with placenta
# devhx_10l3_p Accident or injury requiring medical care
# devhx_10m3_p Any other conditions requiring medical care
dhx01 <- dhx01 %>%
dplyr::mutate_at(dplyr::vars(devhx_10a3_p:devhx_10m3_p), ~car::recode(.,"999=NA")) %>%
dplyr::mutate( A_Burden_Pregnan_Complications = ifelse(rowSums(dplyr::across(devhx_10a3_p:devhx_10m3_p),na.rm = T)> 0,1,0))
# Birth Complications
#devhx_14a3_p Blue at birth
#devhx_14b3_p Slow heart beat
#devhx_14c3_p Did not breathe at first
#devhx_14d3_p Convulsions
#devhx_14e3_p Jaundice needing treatment
#devhx_14f3_p Required oxygen
#devhx_14g_p Required blood transfusion
#devhx_14h3_p Rh incompatibility
dhx01 <- dhx01 %>%
dplyr::mutate_at(dplyr::vars(devhx_14a3_p:devhx_14h3_p), ~car::recode(.,"999=NA")) %>%
dplyr::mutate( A_Burden_Birth_Complications = ifelse(rowSums(dplyr::across(devhx_14a3_p:devhx_14h3_p),na.rm = T)>0,1,0))
#dhx01$A_Burden_Birth_Complications %>% propfunc()
#### Birth Weight InterGrowth21
BW_centile <- read.csv(paste0(birthweight_path,"ABCD_birthweight_centiles.csv")) %>%
filter(!is.na(WeightCentile)) %>%
dplyr::select(Id, WeightCentile) %>%
data.table::setnames("Id", "src_subject_id")
BW_centile$A_index_birth_weight <- ifelse(BW_centile$WeightCentile < 9.999, 1, 0)#| BW_centile$WeightCentile > 90.001
#### Genetic Popstrat ####
popstrat <- readxl::read_excel(paste0(gene_path, "ABCD_5_ALL_SUB_projection_pcs.xlsx"))
colnames(popstrat)[1] <- "src_subject_id"
brainvol.gwas <- read.table(paste0(brainvol.gwas.path,"PRS_BV_Jansenetal_2020_ABCD5.all.score"), header = T)
colnames(brainvol.gwas)[c(1,3)] <- c("src_subject_id", "brainvol.pgs")
#### MRI labels ####
mri.labels <- read.csv("https://nda.nih.gov/api/datadictionary/v2/datastructure/abcd_smrip101/csv")
mri.labels$Type <-NA
mri.labels$Type[grep("Cortical volume in mm\\^3 of APARC ROI",mri.labels$ElementDescription)] <- "Cortical volume"
mri.labels$Type[grep("Cortical thickness in mm of APARC ROI",mri.labels$ElementDescription)] <- "Cortical thickness"
mri.labels$Type[grep("Cortical area in mm\\^2 of APARC ROI",mri.labels$ElementDescription)] <- "Cortical area"
mri.labels$Type[grep("Cortical sulcal depth in mm of APARC ROI",mri.labels$ElementDescription)]<- "Sulcal depth"
mri.labels$ElementDescription <- gsub("Cortical volume in mm\\^3 of APARC ROI" ,"Cortical volume",mri.labels$ElementDescription)
mri.labels$ElementDescription <- gsub("Cortical thickness in mm of APARC ROI" ,"Cortical thickness",mri.labels$ElementDescription)
mri.labels$ElementDescription <- gsub("Cortical area in mm\\^2 of APARC ROI" ,"Cortical area",mri.labels$ElementDescription)
mri.labels$ElementDescription <- gsub("Cortical sulcal depth in mm of APARC ROI","Sulcal depth",mri.labels$ElementDescription)
mrisubcortical.labels <- read.csv("https://nda.nih.gov/api/datadictionary/v2/datastructure/abcd_smrip201/csv")
# Filter for Subcortical ROIs
subROIs <- c("smri_vol_scs_ltventriclelh","smri_vol_scs_crbcortexlh","smri_vol_scs_tplh","smri_vol_scs_caudatelh",
"smri_vol_scs_putamenlh","smri_vol_scs_pallidumlh","smri_vol_scs_hpuslh","smri_vol_scs_amygdalalh",
"smri_vol_scs_aal","smri_vol_scs_vedclh",
"smri_vol_scs_ltventriclerh", "smri_vol_scs_crbcortexrh","smri_vol_scs_tprh","smri_vol_scs_caudaterh",
"smri_vol_scs_putamenrh","smri_vol_scs_pallidumrh", "smri_vol_scs_hpusrh", "smri_vol_scs_amygdalarh",
"smri_vol_scs_aar","smri_vol_scs_vedcrh")
mrisubcortical.labels <- mrisubcortical.labels[mrisubcortical.labels$ElementName %in% subROIs,]
#### Study Site ID ####
abcd_site <- read.csv(paste0(file_path,"abcd-general/abcd_y_lt.csv"))%>% dplyr::filter(eventname=='baseline_year_1_arm_1')
abcd <- left_join(mri_info, mri_y_smr_vol_dsk,by='src_subject_id', suffix=c('', '.smr_vol'))
abcd <- left_join(abcd, mriCortThick,by='src_subject_id', suffix=c('', '.smr_cortThick'))
abcd <- left_join(abcd, mriCortArea, by='src_subject_id', suffix=c('', '.smr_cortArea'))
abcd <- left_join(abcd, mriSulcalDepth, by='src_subject_id', suffix=c('', '.smr_SulcalDepth'))
abcd <- left_join(abcd, mri_subCortVol_aseg, by='src_subject_id', suffix=c('', '.smr_subVol'))
abcd <- left_join(abcd, mri_y_qc_incl, by='src_subject_id', suffix=c('', '.qc_incl'))
abcd <- left_join(abcd, pdem02, by='src_subject_id', suffix=c('', '.pdem02') )
abcd <- left_join(abcd, acspsw03, by="src_subject_id", suffix=c('', '.acspsw03')) # Family identification variables
abcd <- left_join(abcd, dhx01, by="src_subject_id", suffix=c('', '.dhx01'))
abcd <- left_join(abcd, asrs01, by="src_subject_id", suffix=c('', '.asrs01'))
abcd <- left_join(abcd, dibf01 %>% select(src_subject_id, Adopted_child), by="src_subject_id")
abcd <- left_join(abcd, fes02,by="src_subject_id", suffix = c("", ".fes02"))
abcd <- left_join(abcd, led_l_adi,by="src_subject_id", suffix = c("", ".adi"))
abcd <- left_join(abcd, cbcl, by="src_subject_id", suffix = c("", ".cbcl"))
abcd <- left_join(abcd, popstrat,by="src_subject_id")
abcd <- left_join(abcd, abcd_ehis01 %>% select(src_subject_id, Handedness), by= "src_subject_id" )
abcd <- left_join(abcd, BW_centile, by= "src_subject_id" )
abcd <- left_join(abcd,tbss01[,c("src_subject_id","nihtbx_totalcomp_fc",'nihtbx_cryst_fc' ,'nihtbx_fluidcomp_fc')],by= "src_subject_id" )
abcd <- left_join(abcd, brainvol.gwas[,c("src_subject_id", "brainvol.pgs")],by= "src_subject_id") %>%
as.data.frame()
abcd$fsqc_qc <- fsurf_QC$fsqc_qc[match(abcd$src_subject_id, fsurf_QC$src_subject_id)]
abcd$abcd_site <- abcd_site$site_id_l[match(abcd$src_subject_id, abcd_site$src_subject_id)]
abcd$neighborhood_safety <- sscep01$nsc_p_ss_mean_3_items[match(abcd$src_subject_id, sscep01$src_subject_id)]
abcd$Average_Screentime <- stq01$Average_Screentime[match(abcd$src_subject_id, stq01$src_subject_id)]
abcd$Exp_trauma <- ptsd01$Exp_trauma[match(abcd$src_subject_id, ptsd01$src_subject_id)]
abcd$scrn_hr_smoke <- p_screen$scrn_hr_smoke[match(abcd$src_subject_id, p_screen$src_subject_id)]
# Covariates Labels####
covars.x <- Hmisc::Cs(
interview_age , # child’s age
demo_comb_income_v2, # Combined income
demo_caregiver_ed , # Caregiver education (averaged across both primary caregivers)
fes_fam_env_score , # Family Conflict Subscale of the Family Environment Scale;
devhx_3_p , # Maternal age at birth
asr_scr_totprob_t , # Parent Total Problems
neighborhood_safety, # reshist_addr1_adi_wsum Area deprivation index / nsc_p_ss_mean_3_items (neigboorhood safety)
Average_Screentime,
PC1,
PC2,
PC3,
PC4,
PC5,
PC6,
PC7,
PC8,
PC9,
PC10,
brainvol.pgs)
# Computing Prenatal Score
abcd$A_Prenatal_Burden_Score <- abcd %>%
dplyr::select(devhx_6_p, # Unplanned pregnancy
devhx_13_3_p, # C-section
A_Burden_Gestational_Age,
A_index_birth_weight,
devhx_8_tobacco,
devhx_8_alcohol,
devhx_8_marijuana,
A_Burden_Pregnan_Complications,
A_Burden_Birth_Complications) %>% rowSums()
# Filtering Neuroimage QC
abcd <- abcd[abcd$fsqc_qc ==1 |is.na(abcd$fsqc_qc),] # QC score 0;1 0 = reject; 1 = accept
abcd_full <- abcd
#Split by sex
abcd.f <- abcd %>% filter(sex=="f")
abcd.m <- abcd %>% filter(sex=="m")
# Preparing Variables and Labels
# Standardizing Numerical Predictors
for( i in Hmisc::Cs(
interview_age , # child’s age
demo_comb_income_v2, # Combined income
demo_caregiver_ed , # Caregiver education (averaged across both primary caregivers)
fes_fam_env_score , # Family Conflict Subscale ofthe Family Environment Scale;
devhx_3_p , # Maternal age at birth
asr_scr_totprob_t , # Parent Total Problems
neighborhood_safety,
Average_Screentime,
PC1,
PC2,
PC3,
PC4,
PC5,
PC6,
PC7,
PC8,
PC9,
PC10,
brainvol.pgs,
smri_vol_scs_intracranialv,
smri_thick_cdk_mean, # Mean Cortical thickness
smri_area_cdk_total, # Total whole brain cortical area in mm^2
smri_sulc_cdk_mean, # Mean Sulcal Depth
A_Prenatal_Burden_Score
)){
abcd.f[,paste0(i,'_z')] <- as.numeric(scale(abcd.f[,i]))
abcd.m[,paste0(i,'_z')] <- as.numeric(scale(abcd.m[,i]))
}
covars.x <- Hmisc::Cs(
interview_age_z , # child’s age
demo_comb_income_v2_z, # Combined income
demo_caregiver_ed_z , # Caregiver education (averaged across both primary caregivers)
fes_fam_env_score_z , # Family Conflict Subscale ofthe Family Environment Scale;
demo_prnt_marital , # Presence or absence of a partner for the primary caregiver;
devhx_3_p_z , # Maternal age at birth
asr_scr_totprob_t_z , # Parent Total Problems
neighborhood_safety_z,
Average_Screentime_z,
Exp_trauma, #Child’s exposure to zero vs. 1 significant trauma
PC1_z,
PC2_z,
PC3_z,
PC4_z,
PC5_z,
PC6_z,
PC7_z,
PC8_z,
PC9_z,
PC10_z,
brainvol.pgs_z,
Handedness
)
covars.x.labels <- data.frame(covars.x=c("A_Prenatal_Burden_Score",covars.x),
labels= c("Prenatal Adversity",
"Child’s age",
"Combined income",
"Caregiver education",
"Family Conflict",
"Relationship status",
"Maternal age",
"Parent Total Problems",
"Neighborhood Safety",
"Screen Time",
"Exposure to Trauma",
"PC1",
"PC2",
"PC3",
"PC4",
"PC5",
"PC6",
"PC7",
"PC8",
"PC9",
"PC10",
"Brain volume genetic score",
"Handedness"
))
# Filtering Complete cases
abcd.f <- abcd.f[complete.cases(abcd.f[,c(covars.x.labels$covars.x, 'smri_vol_scs_intracranialv')]),]
abcd.m <- abcd.m[complete.cases(abcd.m[,c(covars.x.labels$covars.x, 'smri_vol_scs_intracranialv')]),]
abcd <- rbind(abcd.f, abcd.m)
A total of 8113 participants (51.7% males) were considered for the current work based on the availability of demographics, psychosocial, environmental, genetic and of high-quality neuroimaging data (Supplemental eMethods). Ethics approval for the ABCD study was provided by the central Institutional Review Board (IRB) at the University of California, San Diego, and in some instances by local IRB approval. Caregivers provided written informed consent after the procedures had been fully explained, and children assented before participation in the study.
mean.describe2 <- function(x, group){
group.name <- names( table(group))
g1 <-
paste0(
apply(x[group== group.name[1],] , 2, mean,na.rm=T) %>% round(2)," (",
apply(x[group== group.name[1],], 2, sd,na.rm=T) %>% round(2), ")")
g2 <-
paste0(
apply(x[group== group.name[2],], 2, mean,na.rm=T) %>% round(2)," (",
apply(x[group== group.name[2],], 2, sd,na.rm=T) %>% round(2), ")")
descritivas <- data.frame(cbind(g1,g2))
rownames(descritivas) <- names(x)
colnames(descritivas) <- group.name
return(descritivas)
}
propfunc <-
function(x){
require(dplyr)
if(is.null(ncol(x))){
proportions <- cbind(table(x), round(100*prop.table(table(x)),digits = 2) ) %>% as.data.frame()
proportions <- cbind(rownames(proportions),proportions)
proportions <- proportions
colnames(proportions) <- c("Var", "N", "%")
return(proportions)
}else{
propfunc.x <- function(x){
proportions <- cbind(table(x), round(100*prop.table(table(x)),digits = 2) ) %>% as.data.frame()
proportions <- cbind(rownames(proportions),proportions)
colnames(proportions) <- c("Var", "N", "%")
return(proportions)
}
x <- apply(x, 2, propfunc.x)
x <- data.table::rbindlist(x,idcol = T) %>% as.data.frame()
colnames(x) <- c("Variables", 'Values', "N", "%")
x$Variables <- ifelse(duplicated(x$Variables), '',x$Variables)
return(x)}
}
num.descriptives <- mean.describe2(x = abcd[,
c("A_Prenatal_Burden_Score",
'interview_age' ,# child’s age
'demo_comb_income_v2',# Combined income
'demo_caregiver_ed' ,# Averaged caregivers education
'fes_fam_env_score' ,# Family Conflict Subscale - Family Environment Scale
'devhx_3_p' ,# Maternal age at birth
'asr_scr_totprob_t' ,# Parent Total Problems - ASEBA
'reshist_addr1_adi_wsum',
'Average_Screentime',
"brainvol.pgs_z")],
group = abcd$sex
)
rownames(num.descriptives) <- c("Prenatal Adverse Exposure Score, Mean (SD)",
"Age in months, Mean (SD)",
"Family combined income, Mean (SD)",
"Averaged carigiver's education, Mean (SD)",
"Family conflict subscale, Mean (SD)",
"Maternal age at birth, Mean (SD)",
"Parent Total Problems - ASEBA, Mean (SD)",
"Neighborhood safety, Mean (SD)",
"Average screen time use, Mean (SD)",
"Brain volume polygenic score, Mean (SD)"
)
colnames(num.descriptives) <- c("Females", 'Males')
# Running t. tests
t.values <- c()
p.values <- c()
iID <- 0
for( i in c("A_Prenatal_Burden_Score",
'interview_age' ,# child’s age
'demo_comb_income_v2',# Combined income
'demo_caregiver_ed' ,# Averaged caregivers education
'fes_fam_env_score' ,# Family Conflict Subscale - Family Environment Scale
'devhx_3_p' ,# Maternal age at birth
'asr_scr_totprob_t' ,# Parent Total Problems - ASEBA
'neighborhood_safety',
'Average_Screentime',
'brainvol.pgs_z')){
iID <- iID+1
p.values[iID] <- t.test(abcd[,i] ~ abcd$sex, var.equal=T)$p.value
t.values[iID] <- t.test(abcd[,i] ~ abcd$sex, var.equal=T)$statistic
}
num.descriptives$stat.value <- t.values
num.descriptives$p.value <- p.values
prop.descriptives.race <- by( abcd[,c('demo_race_ethnicity')],abcd$sex,propfunc )
prop.descriptives.race <- cbind(prop.descriptives.race[[1]],prop.descriptives.race[[2]]) #List to matrix
prop.descriptives.race <- prop.descriptives.race[,c(2:3,5:6)]# Selecting variables, values and descriptives
prop.descriptives.race$Females <- paste0(prop.descriptives.race$N, " (", prop.descriptives.race$`%`,")")#
prop.descriptives.race$Males <- paste0(prop.descriptives.race$N.1, " (", prop.descriptives.race$`%.1`,")")
prop.descriptives.race <- rbind(NA,prop.descriptives.race)
rownames(prop.descriptives.race)[1] <- "Ethnicity, N (%)"
prop.descriptives.race <- prop.descriptives.race[,c("Females", 'Males')]
prop.descriptives.race$stat.value <- NA
prop.descriptives.race$p.value <- NA
prop.descriptives.race$stat.value[1]<- chisq.test(abcd$demo_race_ethnicity, abcd$sex)$statistic
prop.descriptives.race$p.value[1] <- chisq.test(abcd$demo_race_ethnicity, abcd$sex)$p.value
## Preparing Labels
Prenatal.vars <- Hmisc::Cs(devhx_6_p, # Unplanned pregnancy
devhx_13_3_p, # C-section
A_Burden_Gestational_Age,
A_index_birth_weight,
devhx_8_tobacco,
devhx_8_alcohol,
devhx_8_marijuana,
A_Burden_Pregnan_Complications,
A_Burden_Birth_Complications)
prop.descriptives.PrenatalAdversity <- by( abcd[,Prenatal.vars],abcd$sex,propfunc )
prop.descriptives.PrenatalAdversity <- cbind(prop.descriptives.PrenatalAdversity[[1]],prop.descriptives.PrenatalAdversity[[2]]) #List to matrix
prop.descriptives.PrenatalAdversity <- prop.descriptives.PrenatalAdversity[seq(2,18, by=2),c(3:4,7:8)]# Selecting variables, values and descriptives
prop.descriptives.PrenatalAdversity$Females <- paste0(prop.descriptives.PrenatalAdversity$N, " (", prop.descriptives.PrenatalAdversity$`%`,")")#
prop.descriptives.PrenatalAdversity$Males <- paste0(prop.descriptives.PrenatalAdversity$N.1, " (", prop.descriptives.PrenatalAdversity$`%.1`,")")
prop.descriptives.PrenatalAdversity <- rbind(NA,prop.descriptives.PrenatalAdversity)
rownames(prop.descriptives.PrenatalAdversity)[1] <- "Adverse Prenatal Exposures, N (%)"
prop.descriptives.PrenatalAdversity <- prop.descriptives.PrenatalAdversity[,c("Females", 'Males')]
prop.descriptives.PrenatalAdversity$stat.value <- NA
prop.descriptives.PrenatalAdversity$p.value <- NA
iID <- 1
for( i in Prenatal.vars){
iID <- iID+1
prop.descriptives.PrenatalAdversity$stat.value[iID]<- chisq.test(abcd[,i], abcd$sex)$statistic
prop.descriptives.PrenatalAdversity$p.value[iID] <- chisq.test(abcd[,i], abcd$sex)$p.value
}
Prenatal.labels <- c("Unplanned pregnancy",
"C-Section",
"Gestational Age",
"Birth weight",
"Tobacco use",
"Alcohol use",
"Marijuana use",
"Pregnancy complications",
"Birth complications")
rownames(prop.descriptives.PrenatalAdversity) <- c("Adverse Prenatal Exposures, N (%)", Prenatal.labels )
# Merging Descriptives
participants.descriptives <- rbind(num.descriptives,prop.descriptives.race,prop.descriptives.PrenatalAdversity)
kable(participants.descriptives, digits = 3, caption = "Participants characteristics") %>%
kable_styling(position = "center")
| Females | Males | stat.value | p.value | |
|---|---|---|---|---|
| Prenatal Adverse Exposure Score, Mean (SD) | 2.19 (1.53) | 2.21 (1.52) | -0.475 | 0.635 |
| Age in months, Mean (SD) | 118.76 (7.51) | 119.19 (7.55) | -2.613 | 0.009 |
| Family combined income, Mean (SD) | 7.35 (2.35) | 7.38 (2.35) | -0.568 | 0.570 |
| Averaged carigiver’s education, Mean (SD) | 16.63 (2.47) | 16.64 (2.48) | -0.234 | 0.815 |
| Family conflict subscale, Mean (SD) | 2.41 (1.94) | 2.62 (1.98) | -4.661 | 0.000 |
| Maternal age at birth, Mean (SD) | 29.55 (6.09) | 29.66 (6) | -0.844 | 0.399 |
| Parent Total Problems - ASEBA, Mean (SD) | 42.67 (10.1) | 43.24 (10.16) | -2.511 | 0.012 |
| Neighborhood safety, Mean (SD) | 94.51 (20.72) | 93.72 (20.55) | -3.255 | 0.001 |
| Average screen time use, Mean (SD) | 3.05 (2.08) | 3.33 (2.17) | -5.905 | 0.000 |
| Brain volume polygenic score, Mean (SD) | 0.06 (0.99) | 0.07 (0.98) | -0.458 | 0.647 |
| Ethnicity, N (%) | 5.826 | 0.213 | ||
| White | 2243 (57.79) | 2481 (59.55) | ||
| Hispanic | 703 (18.11) | 752 (18.05) | ||
| Black | 651 (16.77) | 636 (15.27) | ||
| Asian | 141 (3.63) | 164 (3.94) | ||
| Other | 143 (3.68) | 133 (3.19) | ||
| Adverse Prenatal Exposures, N (%) | ||||
| Unplanned pregnancy | 1443 (36.84) | 1462 (34.84) | 3.428 | 0.064 |
| C-Section | 1440 (36.76) | 1650 (39.32) | 5.524 | 0.019 |
| Gestational Age | 542 (13.84) | 630 (15.01) | 2.177 | 0.140 |
| Birth weight | 595 (15.19) | 607 (14.47) | 0.785 | 0.376 |
| Tobacco use | 495 (12.64) | 538 (12.82) | 0.047 | 0.829 |
| Alcohol use | 1081 (27.6) | 1089 (25.95) | 2.712 | 0.100 |
| Marijuana use | 220 (5.62) | 220 (5.24) | 0.480 | 0.488 |
| Pregnancy complications | 1729 (44.14) | 1786 (42.56) | 1.987 | 0.159 |
| Birth complications | 1040 (26.55) | 1282 (30.55) | 15.687 | 0.000 |
LME_loop <-
function(predictors,
outcomes,
covars = NULL,
data,
predictorsLab = NULL,
outcomesLab = NULL,
ROI=NULL,
print.model = NULL,
dig = NULL,
Scale=NULL,
is.log10 = FALSE
){
require(dplyr)
interac_names <- c("MainEffect_ID",
"Outcome",
"Label",
'ElementDescription',
"Predictor",
"Beta_Predictor",
'Std.error',
"Sample_size",
"R2",
"p_value_Predictor"
)
#Labels
if(!is.null(predictorsLab)){
predictors <- predictors
predictorsLabels <- data.frame(vars = predictors,
names= predictorsLab
,stringsAsFactors = F)
}
if(!is.null(outcomesLab)){
outcomes <- outcomes
outcomesLabels <- data.frame(vars = outcomes,
names= outcomesLab,
ROI=ROI,
stringsAsFactors = F)
}
#Results
main_results <- matrix(NA, nrow = length(predictors)*length(outcomes), ncol = 10) %>% as.data.frame()
colnames(main_results) <- interac_names
#Preparing data
if (is.null(covars)) {
lm.formula <- "outcome.y ~ predictor.x"
} else{
lm.formula <-
paste("outcome.y ~ predictor.x + ", paste(covars, collapse = "+"))
}
if(is.log10==TRUE){lm.formula <- gsub("outcome.y", "log10(outcome.y)", lm.formula)}
if(isTRUE(Scale)) {lm.formula <- gsub("outcome.y", "scale(outcome.y)", lm.formula)}
iID <- 0
for(i in outcomes){
for(j in predictors){
iID <- iID+1
data$outcome.y <- data[,i]
data$predictor.x <- data[,j]
if (is.null(covars)) {
data1 <- data[ complete.cases( data[,c("outcome.y", "predictor.x")] ), ]#covars
} else{
data1 <- data[ complete.cases( data[,c("outcome.y", "predictor.x", covars)] ), ]#covars
}
main_results$Sample_size [iID] <- nrow(data1)
main_results$MainEffect_ID [iID] <- iID
main_results$Outcome [iID] <- i
if(!is.null(outcomesLab)){
main_results$Label [iID] <- outcomesLabels[outcomesLabels$vars== i,"names"]
main_results$ElementDescription [iID] <- outcomesLabels[outcomesLabels$vars== i,"ROI"]
}
if(!is.null(predictorsLab)){
main_results$Predictor [iID] <- predictorsLabels[predictorsLabels$vars== j,"names"]
}else{main_results$Predictor [iID] <- j}
if(nrow(data1)<15)next
formula.random="~(1|mri_info_deviceserialnumber/rel_family_id)"
model.loop = gamm4::gamm4(
as.formula(lm.formula),
random = as.formula(formula.random),
weights = NULL,
data = data1
)
main_results$Beta_Predictor [iID] <- summary(model.loop$gam)$p.table[2,1]
main_results$Std.error [iID] <- summary(model.loop$gam)$p.table[2,2]
main_results$p_value_Predictor [iID] <- summary(model.loop$gam)$p.table[2,4]
main_results$R2 [iID] <- summary(model.loop$gam)$r.sq %>% round(3)
if (!is.null(print.model)) {
print(i)
print(j)
print(summary(model.loop$gam)$p.table)
}
}
}
main_results <<- main_results
}
CVol_outcomes <- mri.labels[mri.labels$Type %in% "Cortical volume", "ElementName"]
CvolROIs <- mri.labels[mri.labels$Type %in% "Cortical volume", "ElementDescription"]
CvolMRI_outcomes_Labels <- mri.labels[mri.labels$Type %in% "Cortical volume","Aliases"]
CortVolResults.F <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CVol_outcomes,
outcomesLab = CvolMRI_outcomes_Labels,
ROI = CvolROIs,
Scale = T,
covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
data = abcd.f
)
CortVolResults.F$FDR <- p.adjust(CortVolResults.F$p_value_Predictor,"fdr")
CortVolResults.M <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CVol_outcomes,
outcomesLab = CvolMRI_outcomes_Labels,
ROI = CvolROIs,
Scale = T,
covars = c(covars.x,'smri_vol_scs_intracranialv_z'),
data = abcd.m
)
CortVolResults.M$FDR <- p.adjust(CortVolResults.M$p_value_Predictor,"fdr")
kable(CortVolResults.F[CortVolResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = 'Cortical Volume Significant Regions - Females',
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.049 | 0.015 | 3917 | 0.117 | 0.001 | 0.023 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.041 | 0.014 | 3917 | 0.223 | 0.004 | 0.043 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.040 | 0.013 | 3917 | 0.062 | 0.002 | 0.027 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.050 | 0.013 | 3917 | 0.334 | 0.000 | 0.003 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.060 | 0.013 | 3917 | 0.305 | 0.000 | 0.000 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.012 | 3917 | 0.374 | 0.000 | 0.003 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.040 | 0.013 | 3917 | 0.324 | 0.002 | 0.027 |
kable(CortVolResults.M[CortVolResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = "Cortical Volume Significant Regions - Males",
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.049 | 0.014 | 4196 | 0.209 | 0.001 | 0.014 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.040 | 0.013 | 4196 | 0.312 | 0.002 | 0.026 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.045 | 0.014 | 4196 | 0.162 | 0.002 | 0.026 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.012 | 4196 | 0.369 | 0.000 | 0.005 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.046 | 0.013 | 4196 | 0.278 | 0.001 | 0.014 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.041 | 0.014 | 4196 | 0.207 | 0.003 | 0.037 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.043 | 0.015 | 4196 | 0.126 | 0.004 | 0.037 |
SubCortical_outcomes <- mrisubcortical.labels$ElementName
SubCortical_outcomes_Labels <- mrisubcortical.labels$Aliases
SubROIs <- mrisubcortical.labels$ElementDescription
SubROIs <- gsub("Volume in mm\\^3 of ASEG ROI ", "Subcortical volume ", SubROIs)
SubCortVolResults.F <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = SubCortical_outcomes,
outcomesLab = SubCortical_outcomes_Labels,
ROI = SubROIs,
Scale = T,
covars = c(covars.x, 'smri_vol_scs_intracranialv_z'),
data = abcd.f
)
SubCortVolResults.F$FDR <- p.adjust(SubCortVolResults.F$p_value_Predictor,"fdr")
SubCortVolResults.M <-
LME_loop(
predictors = "A_Prenatal_Burden_Score",
outcomes = SubCortical_outcomes,
outcomesLab = SubCortical_outcomes_Labels,
ROI = SubROIs,
Scale = T,
covars = c(covars.x, 'smri_vol_scs_intracranialv_z'),
data = abcd.m
)
SubCortVolResults.M$FDR <- p.adjust(SubCortVolResults.M$p_value_Predictor,"fdr")
kable(SubCortVolResults.F[SubCortVolResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = "Subcortical Volume Significant Regions - Females",
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | A_Prenatal_Burden_Score_z | 0.042 | 0.016 | 3917 | 0.106 | 0.008 | 0.041 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | A_Prenatal_Burden_Score_z | -0.032 | 0.012 | 3917 | 0.363 | 0.008 | 0.041 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | A_Prenatal_Burden_Score_z | -0.034 | 0.012 | 3917 | 0.454 | 0.004 | 0.041 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | A_Prenatal_Burden_Score_z | -0.041 | 0.011 | 3917 | 0.464 | 0.000 | 0.006 |
kable(SubCortVolResults.M[SubCortVolResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = 'Subcortical Volume Significant Regions - Males',
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| :——- | :—————— | :——— | ————–: | ———: | ———–: | –: | —————–: | —: |
CortThick_outcomes <- mri.labels[mri.labels$Type %in% "Cortical thickness", "ElementName"]
CortThickROIs <- mri.labels[mri.labels$Type %in% "Cortical thickness", "ElementDescription"]
CortThick_outcomes_Labels <- mri.labels[mri.labels$Type %in% "Cortical thickness","Aliases"]
CortThickResults.F <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortThick_outcomes,
outcomesLab = CortThick_outcomes_Labels,
ROI = CortThickROIs,
Scale = T,
covars = c(covars.x, 'smri_thick_cdk_mean_z'),
data = abcd.f
)
CortThickResults.F$FDR <- p.adjust(CortThickResults.F$p_value_Predictor,"fdr")
CortThickResults.M <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortThick_outcomes,
outcomesLab = CortThick_outcomes_Labels,
ROI = CortThickROIs,
covars = c(covars.x, 'smri_thick_cdk_mean_z'),
Scale = T,
data = abcd.m
)
CortThickResults.M$FDR <- p.adjust(CortThickResults.M$p_value_Predictor,"fdr")
kable(CortThickResults.F[CortThickResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = 'Cortical Thickness Significant Regions - Females',
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.045 | 0.014 | 3917 | 0.252 | 0.002 | 0.016 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.063 | 0.013 | 3917 | 0.335 | 0.000 | 0.000 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.045 | 0.015 | 3917 | 0.096 | 0.003 | 0.024 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.047 | 0.012 | 3917 | 0.427 | 0.000 | 0.003 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.047 | 0.016 | 3917 | 0.090 | 0.003 | 0.024 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.061 | 0.016 | 3917 | 0.123 | 0.000 | 0.002 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.039 | 0.014 | 3917 | 0.266 | 0.006 | 0.037 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.040 | 0.014 | 3917 | 0.257 | 0.004 | 0.025 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.049 | 0.015 | 3917 | 0.137 | 0.001 | 0.012 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.043 | 0.012 | 3917 | 0.466 | 0.000 | 0.003 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.062 | 0.016 | 3917 | 0.103 | 0.000 | 0.002 |
kable(CortThickResults.M[CortThickResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = 'Cortical Thickness Significant Regions - Males',
digits = 3,
row.names = F) %>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.044 | 0.013 | 4196 | 0.347 | 0.001 | 0.012 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.040 | 0.015 | 4196 | 0.124 | 0.006 | 0.032 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.049 | 0.012 | 4196 | 0.434 | 0.000 | 0.001 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.034 | 0.012 | 4196 | 0.452 | 0.004 | 0.025 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.041 | 0.013 | 4196 | 0.349 | 0.002 | 0.020 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.040 | 0.015 | 4196 | 0.121 | 0.007 | 0.036 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.050 | 0.016 | 4196 | 0.040 | 0.001 | 0.018 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.040 | 0.013 | 4196 | 0.271 | 0.003 | 0.021 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.058 | 0.014 | 4196 | 0.160 | 0.000 | 0.001 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.046 | 0.011 | 4196 | 0.467 | 0.000 | 0.001 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.040 | 0.013 | 4196 | 0.332 | 0.003 | 0.021 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.041 | 0.015 | 4196 | 0.059 | 0.007 | 0.036 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.034 | 0.011 | 4196 | 0.490 | 0.003 | 0.021 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.047 | 0.015 | 4196 | 0.094 | 0.002 | 0.021 |
CortArea_outcomes <- mri.labels[mri.labels$Type %in% "Cortical area", "ElementName"]
CortAreaROIs <- mri.labels[mri.labels$Type %in% "Cortical area", "ElementDescription"]
CortArea_outcomes_Labels <- mri.labels[mri.labels$Type %in% "Cortical area","Aliases"]
CortAreaResults.F <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortArea_outcomes,
outcomesLab = CortArea_outcomes_Labels,
covars = c(covars.x,'smri_area_cdk_total_z'),
ROI = CortAreaROIs,
Scale = T,
data = abcd.f
)
CortAreaResults.F$FDR <- p.adjust(CortAreaResults.F$p_value_Predictor,"fdr")
CortAreaResults.M <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortArea_outcomes,
outcomesLab = CortArea_outcomes_Labels,
ROI = CortAreaROIs,
Scale = T,
covars = c(covars.x,'smri_area_cdk_total_z'),
data = abcd.m
)
CortAreaResults.M$FDR <- p.adjust(CortAreaResults.M$p_value_Predictor,"fdr")
kable(CortAreaResults.F[CortAreaResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = 'Cortical Area Significant Regions - Females',
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.045 | 0.012 | 3917 | 0.412 | 0 | 0.018 |
kable(CortAreaResults.M[CortAreaResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = 'Cortical Area Significant Regions - Males',
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.043 | 0.013 | 4196 | 0.316 | 0.001 | 0.044 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.036 | 0.011 | 4196 | 0.502 | 0.001 | 0.044 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | A_Prenatal_Burden_Score_z | 0.044 | 0.014 | 4196 | 0.231 | 0.002 | 0.044 |
SulcalDepth_outcomes <- mri.labels[mri.labels$Type %in% "Sulcal depth", "ElementName"]
SulcalDepthROIs <- mri.labels[mri.labels$Type %in% "Sulcal depth", "ElementDescription"]
SulcalDepth_outcomes_Labels <- mri.labels[mri.labels$Type %in% "Sulcal depth","Aliases"]
SulcalDepthResults.F <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = SulcalDepth_outcomes,
outcomesLab = SulcalDepth_outcomes_Labels,
ROI = SulcalDepthROIs,
Scale = T,
covars = c(covars.x,'smri_sulc_cdk_mean_z'),
data = abcd.f
)
SulcalDepthResults.F$FDR <- p.adjust(SulcalDepthResults.F$p_value_Predictor,"fdr")
SulcalDepthResults.M <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = SulcalDepth_outcomes,
outcomesLab = SulcalDepth_outcomes_Labels,
covars = c(covars.x,'smri_sulc_cdk_mean_z'),
ROI = SulcalDepthROIs,
Scale = T,
data = abcd.m
)
SulcalDepthResults.M$FDR <- p.adjust(SulcalDepthResults.M$p_value_Predictor,"fdr")
kable(SulcalDepthResults.F[SulcalDepthResults.F$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = "Sulcal Depth Significant Regions - Females",
digits = 3,
row.names = F) %>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.049 | 0.016 | 3917 | 0.042 | 0.003 | 0.031 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.086 | 0.016 | 3917 | 0.037 | 0.000 | 0.000 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.063 | 0.017 | 3917 | 0.004 | 0.000 | 0.003 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.056 | 0.016 | 3917 | 0.042 | 0.001 | 0.009 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.060 | 0.016 | 3917 | 0.062 | 0.000 | 0.004 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.081 | 0.016 | 3917 | 0.035 | 0.000 | 0.000 |
kable(SulcalDepthResults.M[SulcalDepthResults.M$FDR<0.05,-c(1, 3)],#Omit iID and Aliases
caption = "Sulcal Depth Siginificant Regions - Males",
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.057 | 0.016 | 4196 | 0.007 | 0.000 | 0.003 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.062 | 0.016 | 4196 | 0.047 | 0.000 | 0.002 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.060 | 0.016 | 4196 | 0.004 | 0.000 | 0.003 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.047 | 0.016 | 4196 | 0.007 | 0.003 | 0.015 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.064 | 0.016 | 4196 | 0.016 | 0.000 | 0.002 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.056 | 0.016 | 4196 | 0.042 | 0.000 | 0.003 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.051 | 0.016 | 4196 | 0.007 | 0.002 | 0.011 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.042 | 0.016 | 4196 | 0.015 | 0.009 | 0.032 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.056 | 0.016 | 4196 | 0.069 | 0.000 | 0.003 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.048 | 0.016 | 4196 | 0.034 | 0.002 | 0.013 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.046 | 0.016 | 4196 | 0.042 | 0.004 | 0.016 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.042 | 0.016 | 4196 | 0.004 | 0.009 | 0.032 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.049 | 0.016 | 4196 | 0.054 | 0.002 | 0.013 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.062 | 0.016 | 4196 | 0.006 | 0.000 | 0.002 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.040 | 0.016 | 4196 | 0.028 | 0.013 | 0.045 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.045 | 0.016 | 4196 | 0.031 | 0.005 | 0.020 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.055 | 0.016 | 4196 | 0.044 | 0.000 | 0.003 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.058 | 0.016 | 4196 | 0.009 | 0.000 | 0.003 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.047 | 0.016 | 4196 | 0.018 | 0.003 | 0.015 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.074 | 0.016 | 4196 | 0.064 | 0.000 | 0.000 |
#Selecting Significant ROIs
Main_results.F <- rbind(CortVolResults.F,
SubCortVolResults.F,
CortThickResults.F,
CortAreaResults.F,
SulcalDepthResults.F)
Main_results.M <- rbind(CortVolResults.M,
SubCortVolResults.M,
CortThickResults.M,
CortAreaResults.M,
SulcalDepthResults.M)
# N significant Brain Regions
SigROIsN.f <- sum(Main_results.F$FDR<0.05)
SigROIsN.m <- sum(Main_results.M$FDR<0.05)
# Running Principal component analysis ####
# Females
PCs.F <- principal(abcd.f[,Main_results.F$Outcome[Main_results.F$FDR<0.05]], 3)
BrainPCsLoadings.F <- as.data.frame(PCs.F$loadings[1:SigROIsN.f, 1:3])
rownames(BrainPCsLoadings.F) <- Main_results.F$ElementDescription [Main_results.F$FDR<0.05]
for(i in 1:3){BrainPCsLoadings.F[,i] <- ifelse(abs(BrainPCsLoadings.F[,i])<.2,0, BrainPCsLoadings.F[,i])}
BrainPCsLoadings.F <- arrange(BrainPCsLoadings.F, desc(RC3))
BrainPCsLoadings.F <- arrange(BrainPCsLoadings.F, desc(RC2))
BrainPCsLoadings.F <- arrange(BrainPCsLoadings.F, desc(RC1))
BrainPCsLoadings.F$ElementDescription<- Main_results.F$ElementDescription [Main_results.F$FDR<0.05]
# Re-ordering Cols
colnames(BrainPCsLoadings.F)[1:3] <- c('Brain PC1', 'Brain PC2','Brain PC3')#renaming PCs
BrainPCsLoadings.F.long <- reshape2::melt(BrainPCsLoadings.F,
id="ElementDescription",
measure=c('Brain PC1', 'Brain PC2','Brain PC3'),
variable.name="Brain components", value.name="Loading")
BrainPCsLoadings.F.long$ElementDescription <- factor(BrainPCsLoadings.F.long$ElementDescription,
levels = BrainPCsLoadings.F$ElementDescription)
#Males
PCs.M <- principal(abcd.m[,Main_results.M$Outcome[Main_results.M$FDR<0.05]], 3)
BrainPCsLoadings.M <- as.data.frame(PCs.M$loadings[1:SigROIsN.m, 1:3])
rownames(BrainPCsLoadings.M) <- Main_results.M$ElementDescription [Main_results.M$FDR<0.05]
for(i in 1:3){BrainPCsLoadings.M[,i] <- ifelse(abs(BrainPCsLoadings.M[,i])<.2,0, BrainPCsLoadings.M[,i])}
BrainPCsLoadings.M <- arrange(BrainPCsLoadings.M, desc(RC3))
BrainPCsLoadings.M <- arrange(BrainPCsLoadings.M, desc(RC2))
BrainPCsLoadings.M <- arrange(BrainPCsLoadings.M, desc(RC1))
BrainPCsLoadings.M$ElementDescription<- Main_results.M$ElementDescription [Main_results.M$FDR<0.05]
# Re-ordering Cols
colnames(BrainPCsLoadings.M)[1:3] <- c('Brain PC1', 'Brain PC2','Brain PC3')#renaming PCs
BrainPCsLoadings.M.long <- reshape2::melt(BrainPCsLoadings.M,
id="ElementDescription",
measure=c('Brain PC1', 'Brain PC2','Brain PC3'),
variable.name="Brain components", value.name="Loading")
BrainPCsLoadings.M.long$ElementDescription <- factor(BrainPCsLoadings.M.long$ElementDescription,
levels = BrainPCsLoadings.M$ElementDescription)
Loadings.F <-
ggplot(BrainPCsLoadings.F.long,aes(y = ElementDescription,x = round(Loading,1),abs(Loading),fill = Loading)) +
facet_wrap( ~ `Brain components`, nrow = 1) +
geom_bar(stat = "identity") +
scale_fill_gradient2(name = "Loading", high = "red", mid = "white", low = "blue", midpoint = 0, guide = 'none') +
theme_bw(base_size = 10)+
geom_vline(xintercept = 0, linewidth=.25)+
coord_cartesian(xlim = c(-.6,.8))+
labs(y="Brain Data Modalities and Regions", title = 'Females')+
theme(axis.text.y = element_text(size = 8),
axis.text.x = element_text(size = 8),
plot.title = element_text(size = 11,hjust = 0.5),
axis.title.x = element_blank(),
text=element_text(family="Arial"))
Loadings.M <-
ggplot(BrainPCsLoadings.M.long,aes(y = ElementDescription,x = round(Loading,1),abs(Loading),fill = Loading)) +
facet_wrap( ~ `Brain components`, nrow = 1) +
geom_bar(stat = "identity") +
scale_fill_gradient2(name = "Loading", high = "red", mid = "white", low = "blue", midpoint = 0, guide = 'none') +
coord_cartesian(xlim = c(-.6,.8))+
theme_bw(base_size = 10) +
geom_vline(xintercept = 0, linewidth=.25)+
labs(y="Brain Data Modalities and Regions", title = 'Males')+
theme(axis.text.y = element_text(size = 8),
axis.text.x = element_text(size = 8),
plot.title = element_text(size = 11,hjust = 0.5),
axis.title.x = element_blank(),
text=element_text(family="Arial"))
grid.arrange(Loadings.F, Loadings.M, ncol=2)
jpeg(filename = "Figure3A.jpg", height =4*1.25 ,width = 8*1.5, units = 'in', res = 600)
grid.arrange(Loadings.F, Loadings.M, ncol=2)
dev.off()
## png
## 2
# Exploring PCs and CBCL and Cognitive measures
abcd.f[,'Brain.PC1'] <- as.numeric(PCs.F$scores[,1])
abcd.f[,'Brain.PC2'] <- as.numeric(PCs.F$scores[,2])
abcd.f[,'Brain.PC3'] <- as.numeric(PCs.F$scores[,3])
abcd.m[,'Brain.PC1'] <- as.numeric(PCs.M$scores[,1])
abcd.m[,'Brain.PC2'] <- as.numeric(PCs.M$scores[,2])
abcd.m[,'Brain.PC3'] <- as.numeric(PCs.M$scores[,3])
CBCL_results.F <- LME_loop(
predictors = c('Brain.PC1', 'Brain.PC2', "Brain.PC3"),
outcomes = c(
'cbcl_scr_syn_external_t',
"cbcl_scr_syn_internal_t",
"cbcl_scr_syn_totprob_t",
'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
'nihtbx_cryst_fc', # Crystallized Composite Fully-Corrected z-score
'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
),
covars = covars.x,
Scale = TRUE,
data = abcd.f
)
CBCL_results.F$FDR <- p.adjust(CBCL_results.F$p_value_Predictor, 'fdr')
CBCL_results.M <- LME_loop(
predictors = c('Brain.PC1', 'Brain.PC2', "Brain.PC3"),
outcomes = c(
'cbcl_scr_syn_external_t',
"cbcl_scr_syn_internal_t",
"cbcl_scr_syn_totprob_t",
'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
'nihtbx_cryst_fc', # Crystallized Composite Fully-Corrected z-score
'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
),
covars = covars.x,
Scale = TRUE,
data = abcd.m
)
CBCL_results.M$FDR <- p.adjust(CBCL_results.M$p_value_Predictor, 'fdr')
kable(cbind(CBCL_results.F[,-c(1,3:4)],CBCL_results.M[,-c(1:5)]),
digits = 4,
caption = "eTable 3. Associations Brain Components with Behavior Problems and Cognition",row.names = F)%>%
kableExtra::kable_styling(position = "center")%>%
add_header_above(c(" "=2, 'Females'=6, 'Males'=6))
| Outcome | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_external_t | Brain.PC1 | -0.0374 | 0.0141 | 3917 | 0.293 | 0.0082 | 0.0245 | -0.0809 | 0.0138 | 4196 | 0.286 | 0.0000 | 0.0000 |
| cbcl_scr_syn_external_t | Brain.PC2 | 0.0267 | 0.0136 | 3917 | 0.292 | 0.0495 | 0.1113 | 0.0009 | 0.0133 | 4196 | 0.280 | 0.9453 | 0.9453 |
| cbcl_scr_syn_external_t | Brain.PC3 | 0.0071 | 0.0137 | 3917 | 0.292 | 0.6048 | 0.6048 | 0.0206 | 0.0130 | 4196 | 0.281 | 0.1132 | 0.2263 |
| cbcl_scr_syn_internal_t | Brain.PC1 | 0.0074 | 0.0138 | 3917 | 0.318 | 0.5896 | 0.6048 | -0.0451 | 0.0137 | 4196 | 0.303 | 0.0010 | 0.0035 |
| cbcl_scr_syn_internal_t | Brain.PC2 | 0.0138 | 0.0132 | 3917 | 0.318 | 0.2961 | 0.4442 | 0.0026 | 0.0131 | 4196 | 0.301 | 0.8439 | 0.9453 |
| cbcl_scr_syn_internal_t | Brain.PC3 | -0.0079 | 0.0133 | 3917 | 0.317 | 0.5520 | 0.6048 | 0.0112 | 0.0128 | 4196 | 0.301 | 0.3831 | 0.5304 |
| cbcl_scr_syn_totprob_t | Brain.PC1 | -0.0176 | 0.0129 | 3917 | 0.391 | 0.1749 | 0.3128 | -0.0705 | 0.0126 | 4196 | 0.377 | 0.0000 | 0.0000 |
| cbcl_scr_syn_totprob_t | Brain.PC2 | 0.0163 | 0.0124 | 3917 | 0.391 | 0.1912 | 0.3128 | -0.0031 | 0.0122 | 4196 | 0.373 | 0.8000 | 0.9453 |
| cbcl_scr_syn_totprob_t | Brain.PC3 | -0.0169 | 0.0125 | 3917 | 0.391 | 0.1767 | 0.3128 | 0.0136 | 0.0119 | 4196 | 0.374 | 0.2542 | 0.4160 |
| nihtbx_totalcomp_fc | Brain.PC1 | 0.1300 | 0.0168 | 3603 | 0.060 | 0.0000 | 0.0000 | 0.0663 | 0.0165 | 3866 | 0.048 | 0.0001 | 0.0003 |
| nihtbx_totalcomp_fc | Brain.PC2 | -0.0433 | 0.0162 | 3603 | 0.048 | 0.0077 | 0.0245 | -0.0268 | 0.0157 | 3866 | 0.045 | 0.0870 | 0.1958 |
| nihtbx_totalcomp_fc | Brain.PC3 | -0.0129 | 0.0162 | 3603 | 0.046 | 0.4257 | 0.5474 | -0.0160 | 0.0154 | 3866 | 0.045 | 0.2983 | 0.4475 |
| nihtbx_cryst_fc | Brain.PC1 | 0.1258 | 0.0169 | 3617 | 0.044 | 0.0000 | 0.0000 | 0.0824 | 0.0162 | 3883 | 0.053 | 0.0000 | 0.0000 |
| nihtbx_cryst_fc | Brain.PC2 | -0.0148 | 0.0162 | 3617 | 0.032 | 0.3624 | 0.5018 | -0.0082 | 0.0154 | 3883 | 0.046 | 0.5930 | 0.7624 |
| nihtbx_cryst_fc | Brain.PC3 | 0.0088 | 0.0162 | 3617 | 0.031 | 0.5875 | 0.6048 | -0.0019 | 0.0153 | 3883 | 0.046 | 0.8997 | 0.9453 |
| nihtbx_fluidcomp_fc | Brain.PC1 | 0.0839 | 0.0173 | 3607 | 0.041 | 0.0000 | 0.0000 | 0.0249 | 0.0168 | 3864 | 0.023 | 0.1394 | 0.2509 |
| nihtbx_fluidcomp_fc | Brain.PC2 | -0.0526 | 0.0166 | 3607 | 0.037 | 0.0016 | 0.0071 | -0.0343 | 0.0160 | 3864 | 0.024 | 0.0325 | 0.0974 |
| nihtbx_fluidcomp_fc | Brain.PC3 | -0.0339 | 0.0166 | 3607 | 0.036 | 0.0416 | 0.1070 | -0.0271 | 0.0158 | 3864 | 0.024 | 0.0863 | 0.1958 |
Prenatal_results.F <- LME_loop(
predictors = c('A_Prenatal_Burden_Score_z'),
outcomes = c(
'cbcl_scr_syn_external_t',
"cbcl_scr_syn_internal_t",
"cbcl_scr_syn_totprob_t",
'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
'nihtbx_cryst_fc', # Crystallized Composite Fully-Corrected z-score
'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
),
covars = covars.x,
Scale = TRUE,
data = abcd.f
)
Prenatal_results.F$FDR <- p.adjust(Prenatal_results.F$p_value_Predictor, 'fdr')
Prenatal_results.M <- LME_loop(
predictors = c('A_Prenatal_Burden_Score'),
outcomes = c(
'cbcl_scr_syn_external_t',
"cbcl_scr_syn_internal_t",
"cbcl_scr_syn_totprob_t",
'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
'nihtbx_cryst_fc', # Crystallized Composite Fully-Corrected z-score
'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
),
covars = covars.x,
Scale = TRUE,
data = abcd.m
)
Prenatal_results.M$FDR <- p.adjust(Prenatal_results.M$p_value_Predictor, 'fdr')
kable(cbind(Prenatal_results.F[,-c(1,3:4)],Prenatal_results.M[,-c(1:5)]),
digits = 3,
caption = "eTable4. Associations Prenatal Adverse Exposures with Behavior Problems and Cognition",row.names = F)%>%
kableExtra::kable_styling(position = "center")%>%add_header_above(c(" "=2, 'Females'=6, 'Males'=6))
| Outcome | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_external_t | A_Prenatal_Burden_Score_z | 0.051 | 0.014 | 3917 | 0.293 | 0.000 | 0.001 | 0.036 | 0.009 | 4196 | 0.282 | 0.000 | 0.000 |
| cbcl_scr_syn_internal_t | A_Prenatal_Burden_Score_z | 0.032 | 0.014 | 3917 | 0.317 | 0.018 | 0.023 | 0.018 | 0.009 | 4196 | 0.301 | 0.041 | 0.082 |
| cbcl_scr_syn_totprob_t | A_Prenatal_Burden_Score_z | 0.059 | 0.013 | 3917 | 0.391 | 0.000 | 0.000 | 0.039 | 0.008 | 4196 | 0.374 | 0.000 | 0.000 |
| nihtbx_totalcomp_fc | A_Prenatal_Burden_Score_z | -0.039 | 0.017 | 3603 | 0.048 | 0.019 | 0.023 | -0.007 | 0.011 | 3866 | 0.045 | 0.541 | 0.649 |
| nihtbx_cryst_fc | A_Prenatal_Burden_Score_z | -0.001 | 0.017 | 3617 | 0.031 | 0.973 | 0.973 | 0.001 | 0.011 | 3883 | 0.046 | 0.910 | 0.910 |
| nihtbx_fluidcomp_fc | A_Prenatal_Burden_Score_z | -0.059 | 0.017 | 3607 | 0.038 | 0.001 | 0.001 | -0.009 | 0.011 | 3864 | 0.023 | 0.422 | 0.633 |
# Standardizing predictors for mediation ####
for( i in c(
'cbcl_scr_syn_external_t',
"cbcl_scr_syn_internal_t",
"cbcl_scr_syn_totprob_t",
'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
'nihtbx_cryst_fc', # Crystallized Composite Fully-Corrected z-score
'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
)){
abcd.f[,paste0(i,'.std')] <- as.numeric(scale(abcd.f[,i]))
abcd.m[,paste0(i,'.std')] <- as.numeric(scale(abcd.m[,i]))
}
#### Specifing Mediation Models ####
# Mediation Brain PC1 ####
#Total problems
med.BrainPC1.Tot <- "
# direct effect
cbcl_scr_syn_totprob_t.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC1 ~ a*A_Prenatal_Burden_Score
cbcl_scr_syn_totprob_t.std ~ b*Brain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
cbcl_scr_syn_totprob_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
#Externalizing problems - PC1
med.BrainPC1.Ext <- "
# direct effect
cbcl_scr_syn_external_t.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC1 ~ a*A_Prenatal_Burden_Score
cbcl_scr_syn_external_t.std ~ b*Brain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2 ~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
cbcl_scr_syn_external_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
# Internalizing
med.BrainPC1.Int <- "
# direct effect
cbcl_scr_syn_internal_t.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC1 ~ a*A_Prenatal_Burden_Score
cbcl_scr_syn_internal_t.std ~ b*Brain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
cbcl_scr_syn_internal_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
# Total Cognition
med.BrainPC1.CogTotal <- "
# direct effect
nihtbx_totalcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC1 ~ a*A_Prenatal_Burden_Score
nihtbx_totalcomp_fc.std ~ b*Brain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_totalcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
med.BrainPC2.CogTotal <- "
# direct effect
nihtbx_totalcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC2 ~ a*A_Prenatal_Burden_Score
nihtbx_totalcomp_fc.std ~ b*Brain.PC2
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_totalcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
# Fluid Cognition - PC1 and PC2
med.BrainPC1.CogFluid <- "
# direct effect
nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC1 ~ a*A_Prenatal_Burden_Score
nihtbx_fluidcomp_fc.std ~ b*Brain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
med.BrainPC2.CogFluid <- "
# direct effect
nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC2 ~ a*A_Prenatal_Burden_Score
nihtbx_fluidcomp_fc.std ~ b*Brain.PC2
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
med.BrainPC3.CogFluid <- "
# direct effect
nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC3 ~ a*A_Prenatal_Burden_Score
nihtbx_fluidcomp_fc.std ~ b*Brain.PC3
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2 ~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
# Cryst Cognition
med.BrainPC1.CogCryst <- "
# direct effect
nihtbx_cryst_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
Brain.PC1 ~ a*A_Prenatal_Burden_Score
nihtbx_cryst_fc.std ~ b*Brain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
Brain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
Brain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_cryst_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
#Mediation Females
fit.BrainPC1.CogTotal.f <- lavaan::sem(med.BrainPC1.CogTotal, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.BrainPC1.CogFluid.f <- lavaan::sem(med.BrainPC1.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.BrainPC1.CogCryst.f <- lavaan::sem(med.BrainPC1.CogCryst, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.BrainPC1.Ext.f <- lavaan::sem(med.BrainPC1.Ext, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.BrainPC2.CogFluid.f <- lavaan::sem(med.BrainPC2.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.BrainPC2.CogTotal.f <- lavaan::sem(med.BrainPC2.CogTotal, data = abcd.f, se = "bootstrap", bootstrap = 1000)
#Mediation Males
fit.BrainPC1.Tot.m <- lavaan::sem(med.BrainPC1.Tot , data = abcd.m, se = "bootstrap", bootstrap = 1000)
fit.BrainPC1.Ext.m <- lavaan::sem(med.BrainPC1.Ext , data = abcd.m, se = "bootstrap", bootstrap = 1000)
#Females
fit.Pars.BrainPC1.CogTotal.f <- lavaan::parameterestimates(fit.BrainPC1.CogTotal.f, boot.ci.type = "bca.simple")
fit.Pars.BrainPC1.CogFluid.f <- lavaan::parameterestimates(fit.BrainPC1.CogFluid.f, boot.ci.type = "bca.simple")
fit.Pars.BrainPC1.CogCryst.f <- lavaan::parameterestimates(fit.BrainPC1.CogCryst.f, boot.ci.type = "bca.simple")
fit.Pars.PC1.Ext.f <- lavaan::parameterestimates(fit.BrainPC1.Ext.f, boot.ci.type = "bca.simple")
fit.Pars.BrainPC2.CogFluid.f <- lavaan::parameterestimates(fit.BrainPC2.CogFluid.f, boot.ci.type = "bca.simple")
fit.Pars.BrainPC2.CogTotal.f <- lavaan::parameterestimates(fit.BrainPC2.CogTotal.f, boot.ci.type = "bca.simple")
# Males
fit.Pars.BrainPC1.Tot.m <- lavaan::parameterestimates(fit.BrainPC1.Tot.m, boot.ci.type = "bca.simple")
fit.Pars.BrainPC1.Ext.m <- lavaan::parameterestimates(fit.BrainPC1.Ext.m, boot.ci.type = "bca.simple")
kable(fit.Pars.BrainPC1.CogTotal.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Total Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_totalcomp_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.024 | 0.011 | -2.249 | 0.025 | -0.046 | -0.003 |
| Brain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.066 | 0.010 | -6.269 | 0.000 | -0.086 | -0.045 |
| nihtbx_totalcomp_fc.std | ~ | Brain.PC1 | b | 0.123 | 0.018 | 6.987 | 0.000 | 0.085 | 0.155 |
| Brain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.074 | 0.011 | 6.705 | 0.000 | 0.052 | 0.095 |
| Brain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.052 | 0.011 | -4.504 | 0.000 | -0.073 | -0.028 |
| ab | := | a*b | ab | -0.008 | 0.002 | -4.590 | 0.000 | -0.012 | -0.005 |
| total | := | c+(a*b) | total | -0.032 | 0.011 | -2.978 | 0.003 | -0.054 | -0.010 |
| abtot | := | ab/total | abtot | 0.249 | 5.596 | 0.044 | 0.965 | 0.122 | 0.624 |
kable(fit.Pars.BrainPC1.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Fluid Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_fluidcomp_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.035 | 0.011 | -3.095 | 0.002 | -0.056 | -0.012 |
| Brain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.065 | 0.011 | -6.075 | 0.000 | -0.086 | -0.045 |
| nihtbx_fluidcomp_fc.std | ~ | Brain.PC1 | b | 0.078 | 0.018 | 4.409 | 0.000 | 0.042 | 0.112 |
| Brain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.073 | 0.011 | 6.638 | 0.000 | 0.050 | 0.095 |
| Brain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.051 | 0.012 | -4.326 | 0.000 | -0.075 | -0.028 |
| ab | := | a*b | ab | -0.005 | 0.001 | -3.514 | 0.000 | -0.009 | -0.003 |
| total | := | c+(a*b) | total | -0.040 | 0.011 | -3.540 | 0.000 | -0.060 | -0.017 |
| abtot | := | ab/total | abtot | 0.127 | 0.115 | 1.098 | 0.272 | 0.058 | 0.302 |
kable(fit.Pars.BrainPC1.CogCryst.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Fluid Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_cryst_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.002 | 0.011 | -0.215 | 0.830 | -0.025 | 0.020 |
| Brain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.067 | 0.011 | -6.344 | 0.000 | -0.087 | -0.046 |
| nihtbx_cryst_fc.std | ~ | Brain.PC1 | b | 0.120 | 0.017 | 7.051 | 0.000 | 0.086 | 0.154 |
| Brain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.074 | 0.011 | 6.795 | 0.000 | 0.051 | 0.094 |
| Brain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.051 | 0.011 | -4.435 | 0.000 | -0.073 | -0.028 |
| ab | := | a*b | ab | -0.008 | 0.002 | -4.703 | 0.000 | -0.012 | -0.005 |
| total | := | c+(a*b) | total | -0.010 | 0.012 | -0.911 | 0.362 | -0.034 | 0.012 |
| abtot | := | ab/total | abtot | 0.766 | 22.587 | 0.034 | 0.973 | -0.356 | 306.461 |
kable(fit.Pars.PC1.Ext.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Externalizing Problems - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_external_t.std | ~ | A_Prenatal_Burden_Score | c | 0.022 | 0.010 | 2.206 | 0.027 | 0.001 | 0.041 |
| Brain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.066 | 0.011 | -6.250 | 0.000 | -0.087 | -0.046 |
| cbcl_scr_syn_external_t.std | ~ | Brain.PC1 | b | -0.030 | 0.014 | -2.096 | 0.036 | -0.057 | -0.002 |
| Brain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.075 | 0.011 | 6.973 | 0.000 | 0.054 | 0.097 |
| Brain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.048 | 0.011 | -4.422 | 0.000 | -0.069 | -0.026 |
| ab | := | a*b | ab | 0.002 | 0.001 | 1.942 | 0.052 | 0.000 | 0.004 |
| total | := | c+(a*b) | total | 0.024 | 0.010 | 2.387 | 0.017 | 0.003 | 0.043 |
| abtot | := | ab/total | abtot | 0.083 | 0.408 | 0.202 | 0.840 | 0.003 | 0.337 |
kable(fit.Pars.BrainPC2.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC2 for Fluid Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_fluidcomp_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.037 | 0.011 | -3.388 | 0.001 | -0.060 | -0.016 |
| Brain.PC2 | ~ | A_Prenatal_Burden_Score | a | 0.073 | 0.011 | 6.817 | 0.000 | 0.052 | 0.094 |
| nihtbx_fluidcomp_fc.std | ~ | Brain.PC2 | b | -0.043 | 0.016 | -2.643 | 0.008 | -0.075 | -0.009 |
| Brain.PC1 | ~ | A_Prenatal_Burden_Score | aPC1 | -0.065 | 0.011 | -5.933 | 0.000 | -0.086 | -0.044 |
| Brain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.051 | 0.012 | -4.429 | 0.000 | -0.075 | -0.028 |
| ab | := | a*b | ab | -0.003 | 0.001 | -2.481 | 0.013 | -0.006 | -0.001 |
| total | := | c+(a*b) | total | -0.040 | 0.011 | -3.709 | 0.000 | -0.063 | -0.021 |
| abtot | := | ab/total | abtot | 0.080 | 0.053 | 1.505 | 0.132 | 0.017 | 0.207 |
kable(fit.Pars.BrainPC2.CogTotal.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC2 for Total Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_totalcomp_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.030 | 0.011 | -2.621 | 0.009 | -0.052 | -0.009 |
| Brain.PC2 | ~ | A_Prenatal_Burden_Score | a | 0.074 | 0.011 | 6.768 | 0.000 | 0.051 | 0.095 |
| nihtbx_totalcomp_fc.std | ~ | Brain.PC2 | b | -0.037 | 0.017 | -2.259 | 0.024 | -0.071 | -0.004 |
| Brain.PC1 | ~ | A_Prenatal_Burden_Score | aPC1 | -0.066 | 0.011 | -6.199 | 0.000 | -0.086 | -0.045 |
| Brain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.052 | 0.012 | -4.378 | 0.000 | -0.074 | -0.028 |
| ab | := | a*b | ab | -0.003 | 0.001 | -2.125 | 0.034 | -0.006 | -0.001 |
| total | := | c+(a*b) | total | -0.032 | 0.011 | -2.883 | 0.004 | -0.055 | -0.012 |
| abtot | := | ab/total | abtot | 0.085 | 0.073 | 1.158 | 0.247 | 0.013 | 0.314 |
kable(fit.Pars.BrainPC1.Tot.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Total Problems - Males") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_totprob_t.std | ~ | A_Prenatal_Burden_Score | c | 0.020 | 0.009 | 2.195 | 0.028 | 0.002 | 0.037 |
| Brain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.078 | 0.010 | -7.996 | 0.000 | -0.098 | -0.060 |
| cbcl_scr_syn_totprob_t.std | ~ | Brain.PC1 | b | -0.065 | 0.014 | -4.807 | 0.000 | -0.092 | -0.040 |
| Brain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.035 | 0.011 | 3.282 | 0.001 | 0.013 | 0.054 |
| Brain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | 0.087 | 0.011 | 7.900 | 0.000 | 0.065 | 0.109 |
| ab | := | a*b | ab | 0.005 | 0.001 | 4.188 | 0.000 | 0.003 | 0.008 |
| total | := | c+(a*b) | total | 0.025 | 0.009 | 2.800 | 0.005 | 0.007 | 0.042 |
| abtot | := | ab/total | abtot | 0.208 | 2.812 | 0.074 | 0.941 | 0.086 | 0.696 |
kable(fit.Pars.BrainPC1.Ext.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Externalizing Problems - Males") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_external_t.std | ~ | A_Prenatal_Burden_Score | c | 0.021 | 0.010 | 2.163 | 0.031 | 0.002 | 0.040 |
| Brain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.078 | 0.010 | -7.840 | 0.000 | -0.098 | -0.059 |
| cbcl_scr_syn_external_t.std | ~ | Brain.PC1 | b | -0.075 | 0.014 | -5.508 | 0.000 | -0.102 | -0.048 |
| Brain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.035 | 0.010 | 3.379 | 0.001 | 0.014 | 0.055 |
| Brain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | 0.087 | 0.011 | 7.861 | 0.000 | 0.065 | 0.108 |
| ab | := | a*b | ab | 0.006 | 0.001 | 4.388 | 0.000 | 0.003 | 0.009 |
| total | := | c+(a*b) | total | 0.027 | 0.010 | 2.800 | 0.005 | 0.007 | 0.045 |
| abtot | := | ab/total | abtot | 0.218 | 1.359 | 0.161 | 0.872 | 0.097 | 0.737 |
LME_bySite_loop <-
function(predictors,
outcomes,
covars = NULL,
data,
predictorsLab = NULL,
outcomesLab = NULL,
ROI=NULL,
print.model = NULL,
dig = NULL,
is.log10 = FALSE,
Site
){
require(dplyr)
interac_names <- c("MainEffect_ID",
"Site",
"Outcome",
"Label",
'ElementDescription',
"Predictor",
"Beta_Predictor",
'Std.error',
"Sample_size",
"R2",
"p_value_Predictor"
)
#Labels
if(!is.null(predictorsLab)){
predictors <- predictors
predictorsLabels <- data.frame(vars = predictors,
names= predictorsLab
,stringsAsFactors = F)
}
if(!is.null(outcomesLab)){
outcomes <- outcomes
outcomesLabels <- data.frame(vars = outcomes,
names= outcomesLab,
ROI=ROI,
stringsAsFactors = F)
}
#Results
site.name <- names(table(data[,Site]))
main_results <- matrix(NA, nrow = length(predictors)*length(outcomes)*length(site.name), ncol = 11) %>% as.data.frame()
colnames(main_results) <- interac_names
#Preparing data
if (is.null(covars)) {
lm.formula <- "outcome.y ~ predictor.x"
} else{
lm.formula <-
paste("scale(outcome.y) ~ predictor.x + ", paste(covars, collapse = "+"))
}
if(is.log10==TRUE){lm.formula <- gsub("outcome.y", "log10(outcome.y)", lm.formula)}
formula.random = "~(1|rel_family_id)"
iID <- 0
for(i in outcomes){
for(j in predictors){
try(silent = T,
for(k in site.name){
Data_Site <- data[data[,Site] == k,]
iID <- iID+1
Data_Site$outcome.y <- Data_Site[,i]
Data_Site$predictor.x <- Data_Site[,j]
if(is.null(covars)){
Data_Site1 <- Data_Site[ complete.cases( Data_Site[,c("outcome.y", "predictor.x")] ), ]
}else{
Data_Site1 <- Data_Site[ complete.cases( Data_Site[,c("outcome.y", "predictor.x", covars)] ), ]
}
main_results$Sample_size [iID] <- nrow(Data_Site1)
main_results$MainEffect_ID [iID] <- iID
main_results$Site [iID] <- k
main_results$Outcome [iID] <- i
if(!is.null(outcomesLab)){
main_results$Label [iID] <- outcomesLabels[outcomesLabels$vars== i,"names"]
main_results$ElementDescription [iID] <- outcomesLabels[outcomesLabels$vars== i,"ROI"]
}
if(!is.null(predictorsLab)){
main_results$Predictor [iID] <- predictorsLabels[predictorsLabels$vars== j,"names"]
}else{main_results$Predictor [iID] <- j}
if(nrow(Data_Site)<49)next
#Running Model
model.loop = gamm4::gamm4(
as.formula(lm.formula),
random = as.formula(formula.random),
weights = NULL,
data = Data_Site
)
main_results$Beta_Predictor [iID] <- summary(model.loop$gam)$p.table[2,1]
main_results$Std.error [iID] <- summary(model.loop$gam)$p.table[2,2]
main_results$p_value_Predictor [iID] <- summary(model.loop$gam)$p.table[2,4]
main_results$R2 [iID] <- summary(model.loop$gam)$r.sq %>% round(3)
if (!is.null(print.model)) {
print(i)
print(j)
print(k)
print(summary(model.loop$gam)$p.table)
}
}
)
}
}
main_results <<- main_results
}
#Cortical Volume by site Girls
CortVol_SigResults_bySite.F <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortVolResults.F$Outcome [CortVolResults.F$FDR <0.05],
outcomesLab = CortVolResults.F$Label [CortVolResults.F$FDR <0.05],
ROI = CortVolResults.F$ElementDescription [CortVolResults.F$FDR <0.05],
covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.f
)
CortVol_SigResults_bySite.F <-
CortVol_SigResults_bySite.F[complete.cases(CortVol_SigResults_bySite.F),]#filtering GLMEs that didnt fit
CortVol_SigResults_bySite.F$Site <-
abcd$abcd_site[match(CortVol_SigResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#Cortical Volume by site Boys
CortVol_SigResults_bySite.M <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortVolResults.M$Outcome [CortVolResults.M$FDR <0.05],
outcomesLab = CortVolResults.M$Label [CortVolResults.M$FDR <0.05],
ROI = CortVolResults.M$ElementDescription [CortVolResults.M$FDR <0.05],
covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.m
)
CortVol_SigResults_bySite.M <-
CortVol_SigResults_bySite.M[complete.cases(CortVol_SigResults_bySite.M),]#filtering GLMEs that didnt fit
CortVol_SigResults_bySite.M$Site <-
abcd$abcd_site[match(CortVol_SigResults_bySite.M$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#SubCortical Volume by site Girls
SubCortVol_SigResults_bySite.F <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = SubCortVolResults.F$Outcome [SubCortVolResults.F$FDR <0.05],
outcomesLab = SubCortVolResults.F$Label [SubCortVolResults.F$FDR <0.05],
ROI = SubCortVolResults.F$ElementDescription [SubCortVolResults.F$FDR <0.05],
covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.f
)
SubCortVol_SigResults_bySite.F <-
SubCortVol_SigResults_bySite.F[complete.cases(SubCortVol_SigResults_bySite.F),]#filtering GLMEs that didnt fit
SubCortVol_SigResults_bySite.F$Site <-
abcd$abcd_site[match(SubCortVol_SigResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#SubCortical Volume by site Boys
SubCortVol_SigResults_bySite.M <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = SubCortVolResults.M$Outcome [SubCortVolResults.M$FDR <0.05],
outcomesLab = SubCortVolResults.M$Label [SubCortVolResults.M$FDR <0.05],
ROI = SubCortVolResults.M$ElementDescription [SubCortVolResults.M$FDR <0.05],
covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.m
)
SubCortVol_SigResults_bySite.M <-
SubCortVol_SigResults_bySite.M[complete.cases(SubCortVol_SigResults_bySite.M),]#filtering GLMEs that didnt fit
SubCortVol_SigResults_bySite.M$Site <-
abcd$abcd_site[match(SubCortVol_SigResults_bySite.M$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#Cortical Thickness by site Girls
CortThickResults_bySite.F <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortThickResults.F$Outcome [CortThickResults.F$FDR <0.05],
outcomesLab = CortThickResults.F$Label [CortThickResults.F$FDR <0.05],
ROI = CortThickResults.F$ElementDescription [CortThickResults.F$FDR <0.05],
covars = c(covars.x, "smri_thick_cdk_mean_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.f
)
CortThickResults_bySite.F <-
CortThickResults_bySite.F[complete.cases(CortThickResults_bySite.F),]#filtering GLMEs that didnt fit
CortThickResults_bySite.F$Site <-
abcd$abcd_site[match(CortThickResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#Cortical Thickness by site Boys
CortThickResults_bySite.M <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortThickResults.M$Outcome [CortThickResults.M$FDR <0.05],
outcomesLab = CortThickResults.M$Label [CortThickResults.M$FDR <0.05],
ROI = CortThickResults.M$ElementDescription [CortThickResults.M$FDR <0.05],
covars = c(covars.x, "smri_thick_cdk_mean_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.m
)
CortThickResults_bySite.M <-
CortThickResults_bySite.M[complete.cases(CortThickResults_bySite.M),]#filtering GLMEs that didnt fit
CortThickResults_bySite.M$Site <-
abcd$abcd_site[match(CortThickResults_bySite.M$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#Cortical Area by site Girls
CortAreaResults_bySite.F <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortAreaResults.F$Outcome [CortAreaResults.F$FDR <0.05],
outcomesLab = CortAreaResults.F$Label [CortAreaResults.F$FDR <0.05],
ROI = CortAreaResults.F$ElementDescription [CortAreaResults.F$FDR <0.05],
covars = c(covars.x, "smri_area_cdk_total_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.f
)
CortAreaResults_bySite.F <-
CortAreaResults_bySite.F[complete.cases(CortAreaResults_bySite.F),]#filtering GLMEs that didnt fit
CortAreaResults_bySite.F$Site <-
abcd$abcd_site[match(CortAreaResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#Cortical Area by site Boys
CortAreaResults_bySite.M <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = CortAreaResults.M$Outcome [CortAreaResults.M$FDR <0.05],
outcomesLab = CortAreaResults.M$Label [CortAreaResults.M$FDR <0.05],
ROI = CortAreaResults.M$ElementDescription [CortAreaResults.M$FDR <0.05],
covars = c(covars.x, "smri_area_cdk_total_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.m
)
CortAreaResults_bySite.M <-
CortAreaResults_bySite.M[complete.cases(CortAreaResults_bySite.M),]#filtering GLMEs that didnt fit
#Sulcal Depth by site Girls
SulcalDepthResults_bySite.F <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = SulcalDepthResults.F$Outcome [SulcalDepthResults.F$FDR <0.05],
outcomesLab = SulcalDepthResults.F$Label [SulcalDepthResults.F$FDR <0.05],
ROI = SulcalDepthResults.F$ElementDescription [SulcalDepthResults.F$FDR <0.05],
covars = c(covars.x, "smri_sulc_cdk_mean_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.f
)
SulcalDepthResults_bySite.F <-
SulcalDepthResults_bySite.F[complete.cases(SulcalDepthResults_bySite.F),]#filtering GLMEs that didnt fit
SulcalDepthResults_bySite.F$Site <-
abcd$abcd_site[match(SulcalDepthResults_bySite.F$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#Sulcal Depth by site Boys
SulcalDepthResults_bySite.M <-
LME_bySite_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = SulcalDepthResults.M$Outcome [SulcalDepthResults.M$FDR <0.05],
outcomesLab = SulcalDepthResults.M$Label [SulcalDepthResults.M$FDR <0.05],
ROI = SulcalDepthResults.M$ElementDescription [SulcalDepthResults.M$FDR <0.05],
covars = c(covars.x, "smri_sulc_cdk_mean_z"),
Site = "mri_info_deviceserialnumber",
data = abcd.m
)
SulcalDepthResults_bySite.M <-
SulcalDepthResults_bySite.M[complete.cases(SulcalDepthResults_bySite.M),]#filtering GLMEs that didnt fit
SulcalDepthResults_bySite.M$Site <-
abcd$abcd_site[match(SulcalDepthResults_bySite.M$Site, abcd$mri_info_deviceserialnumber)]# Deidentifying MRI
#Selecting Significant ROIs
CortVol.Sig.F <- CortVolResults.F$Outcome [CortVolResults.F$FDR <0.05]
SubCortVol.Sig.F <- SubCortVolResults.F$Outcome[SubCortVolResults.F$FDR <0.05]
CortThick.Sig.F <- CortThickResults.F$Outcome [CortThickResults.F$FDR <0.05]
CortArea.Sig.F <- CortAreaResults.F$Outcome [CortAreaResults.F$FDR <0.05]
SulcalDepth.Sig.F <- SulcalDepthResults.F$Outcome[SulcalDepthResults.F$FDR <0.05]
CortVol.Sig.M <- CortVolResults.M$Outcome [CortVolResults.M$FDR <0.05]
SubCortVol.Sig.M <- SubCortVolResults.M$Outcome[SubCortVolResults.M$FDR <0.05]
CortThick.Sig.M <- CortThickResults.M$Outcome [CortThickResults.M$FDR <0.05]
CortArea.Sig.M <- CortAreaResults.M$Outcome [CortAreaResults.M$FDR <0.05]
SulcalDepth.Sig.M <- SulcalDepthResults.M$Outcome[SulcalDepthResults.M$FDR <0.05]
# Cortical Vol meta-analysis - Girls #
CortVol.Meta.F <- as.data.frame(matrix(nrow = length(CortVol.Sig.F),ncol = 5))
colnames(CortVol.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in CortVol.Sig.F){
iID <- iID+1
meta.res <- metafor::rma(
yi = CortVol_SigResults_bySite.F[CortVol_SigResults_bySite.F$Outcome==i,]$Beta_Predictor,
sei = CortVol_SigResults_bySite.F[CortVol_SigResults_bySite.F$Outcome==i,]$Std.error,
method = "FE")
CortVol.Meta.F[iID,"ROI"] <- i
CortVol.Meta.F[iID,"PooledBeta"] <- meta.res$beta
CortVol.Meta.F[iID,"p.value"] <- meta.res$pval
CortVol.Meta.F[iID,"ci.lb"] <- meta.res$ci.lb
CortVol.Meta.F[iID,"ci.ub"] <- meta.res$ci.ub
}
# Cortical Vol meta-analysis - Boys #
CortVol.Meta.M <- as.data.frame(matrix(nrow = length(CortVol.Sig.M),ncol = 5))
colnames(CortVol.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in CortVol.Sig.M){
iID <- iID+1
meta.res <- metafor::rma(
yi = CortVol_SigResults_bySite.M[CortVol_SigResults_bySite.M$Outcome==i,]$Beta_Predictor,
sei = CortVol_SigResults_bySite.M[CortVol_SigResults_bySite.M$Outcome==i,]$Std.error,
method = "FE")
CortVol.Meta.M[iID,"ROI"] <- i
CortVol.Meta.M[iID,"PooledBeta"] <- meta.res$beta
CortVol.Meta.M[iID,"p.value"] <- meta.res$pval
CortVol.Meta.M[iID,"ci.lb"] <- meta.res$ci.lb
CortVol.Meta.M[iID,"ci.ub"] <- meta.res$ci.ub
}
# Subcortical Volume - Girls #
SubCortVol.Meta.F <- as.data.frame(matrix(nrow = length(SubCortVol.Sig.F),ncol = 5))
colnames(SubCortVol.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in SubCortVol.Sig.F){
iID <- iID+1
meta.res <- metafor::rma(
yi = SubCortVol_SigResults_bySite.F[SubCortVol_SigResults_bySite.F$Outcome==i,]$Beta_Predictor,
sei = SubCortVol_SigResults_bySite.F[SubCortVol_SigResults_bySite.F$Outcome==i,]$Std.error,
method = "FE")
SubCortVol.Meta.F[iID,"ROI"] <- i
SubCortVol.Meta.F[iID,"PooledBeta"] <- meta.res$beta
SubCortVol.Meta.F[iID,"p.value"] <- meta.res$pval
SubCortVol.Meta.F[iID,"ci.lb"] <- meta.res$ci.lb
SubCortVol.Meta.F[iID,"ci.ub"] <- meta.res$ci.ub
}
# Subcortical Volume - Boys #
SubCortVol.Meta.M <- as.data.frame(matrix(nrow = length(SubCortVol.Sig.M),ncol = 5))
colnames(SubCortVol.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in SubCortVol.Sig.M){
iID <- iID+1
meta.res <- metafor::rma(
yi = SubCortVol_SigResults_bySite.M[SubCortVol_SigResults_bySite.M$Outcome==i,]$Beta_Predictor,
sei = SubCortVol_SigResults_bySite.M[SubCortVol_SigResults_bySite.M$Outcome==i,]$Std.error,
method = "FE")
SubCortVol.Meta.M[iID,"ROI"] <- i
SubCortVol.Meta.M[iID,"PooledBeta"] <- meta.res$beta
SubCortVol.Meta.M[iID,"p.value"] <- meta.res$pval
SubCortVol.Meta.M[iID,"ci.lb"] <- meta.res$ci.lb
SubCortVol.Meta.M[iID,"ci.ub"] <- meta.res$ci.ub
}
# Cortical Thickness meta-analysis - Girls #
CortThick.Meta.F <- as.data.frame(matrix(nrow = length(CortThick.Sig.F),ncol = 5))
colnames(CortThick.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in CortThick.Sig.F){
iID <- iID+1
meta.res <- metafor::rma(
yi = CortThickResults_bySite.F[CortThickResults_bySite.F$Outcome==i,]$Beta_Predictor,
sei = CortThickResults_bySite.F[CortThickResults_bySite.F$Outcome==i,]$Std.error,
method = "FE")
CortThick.Meta.F[iID,"ROI"] <- i
CortThick.Meta.F[iID,"PooledBeta"] <- meta.res$beta
CortThick.Meta.F[iID,"p.value"] <- meta.res$pval
CortThick.Meta.F[iID,"ci.lb"] <- meta.res$ci.lb
CortThick.Meta.F[iID,"ci.ub"] <- meta.res$ci.ub
}
# Cortical Thickness meta-analysis - Boys #
CortThick.Meta.M <- as.data.frame(matrix(nrow = length(CortThick.Sig.M),ncol = 5))
colnames(CortThick.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in CortThick.Sig.M){
iID <- iID+1
meta.res <- metafor::rma(
yi = CortThickResults_bySite.M[CortThickResults_bySite.M$Outcome==i,]$Beta_Predictor,
sei = CortThickResults_bySite.M[CortThickResults_bySite.M$Outcome==i,]$Std.error,
method = "FE")
CortThick.Meta.M[iID,"ROI"] <- i
CortThick.Meta.M[iID,"PooledBeta"] <- meta.res$beta
CortThick.Meta.M[iID,"p.value"] <- meta.res$pval
CortThick.Meta.M[iID,"ci.lb"] <- meta.res$ci.lb
CortThick.Meta.M[iID,"ci.ub"] <- meta.res$ci.ub
}
# Cortical Area meta-analysis - Girls #
CortArea.Meta.F <- as.data.frame(matrix(nrow = length(CortArea.Sig.F),ncol = 5))
colnames(CortArea.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in CortArea.Sig.F){
iID <- iID+1
meta.res <- metafor::rma(
yi = CortAreaResults_bySite.F[CortAreaResults_bySite.F$Outcome==i,]$Beta_Predictor,
sei = CortAreaResults_bySite.F[CortAreaResults_bySite.F$Outcome==i,]$Std.error,
method = "FE")
CortArea.Meta.F[iID,"ROI"] <- i
CortArea.Meta.F[iID,"PooledBeta"] <- meta.res$beta
CortArea.Meta.F[iID,"p.value"] <- meta.res$pval
CortArea.Meta.F[iID,"ci.lb"] <- meta.res$ci.lb
CortArea.Meta.F[iID,"ci.ub"] <- meta.res$ci.ub
}
# Cortical Area meta-analysis - Boys
CortArea.Meta.M <- as.data.frame(matrix(nrow = length(CortArea.Sig.M),ncol = 5))
colnames(CortArea.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in CortArea.Sig.M){
iID <- iID+1
meta.res <- metafor::rma(
yi = CortAreaResults_bySite.M[CortAreaResults_bySite.M$Outcome==i,]$Beta_Predictor,
sei = CortAreaResults_bySite.M[CortAreaResults_bySite.M$Outcome==i,]$Std.error,
method = "FE")
CortArea.Meta.M[iID,"ROI"] <- i
CortArea.Meta.M[iID,"PooledBeta"] <- meta.res$beta
CortArea.Meta.M[iID,"p.value"] <- meta.res$pval
CortArea.Meta.M[iID,"ci.lb"] <- meta.res$ci.lb
CortArea.Meta.M[iID,"ci.ub"] <- meta.res$ci.ub
}
# SulcalDepth meta-analysis - Girls #
SulcalDepth.Meta.F <- as.data.frame(matrix(nrow = length(SulcalDepth.Sig.F),ncol = 5))
colnames(SulcalDepth.Meta.F) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in SulcalDepth.Sig.F){
iID <- iID+1
meta.res <- metafor::rma(
yi = SulcalDepthResults_bySite.F[SulcalDepthResults_bySite.F$Outcome==i,]$Beta_Predictor,
sei = SulcalDepthResults_bySite.F[SulcalDepthResults_bySite.F$Outcome==i,]$Std.error,
method = "FE")
SulcalDepth.Meta.F[iID,"ROI"] <- i
SulcalDepth.Meta.F[iID,"PooledBeta"] <- meta.res$beta
SulcalDepth.Meta.F[iID,"p.value"] <- meta.res$pval
SulcalDepth.Meta.F[iID,"ci.lb"] <- meta.res$ci.lb
SulcalDepth.Meta.F[iID,"ci.ub"] <- meta.res$ci.ub
}
#SulcalDepth meta-analysis meta-analysis - Boys #
SulcalDepth.Meta.M <- as.data.frame(matrix(nrow = length(SulcalDepth.Sig.M),ncol = 5))
colnames(SulcalDepth.Meta.M) <- c("ROI",'PooledBeta','p.value','ci.lb','ci.ub')
iID <- 0
for( i in SulcalDepth.Sig.M){
iID <- iID+1
meta.res <- metafor::rma(
yi = SulcalDepthResults_bySite.M[SulcalDepthResults_bySite.M$Outcome==i,]$Beta_Predictor,
sei = SulcalDepthResults_bySite.M[SulcalDepthResults_bySite.M$Outcome==i,]$Std.error,
method = "FE")
SulcalDepth.Meta.M[iID,"ROI"] <- i
SulcalDepth.Meta.M[iID,"PooledBeta"] <- meta.res$beta
SulcalDepth.Meta.M[iID,"p.value"] <- meta.res$pval
SulcalDepth.Meta.M[iID,"ci.lb"] <- meta.res$ci.lb
SulcalDepth.Meta.M[iID,"ci.ub"] <- meta.res$ci.ub
}
# Girls
CortVol.Meta.F$Label <-CortVolResults.F[CortVolResults.F$Outcome%in%CortVol.Sig.F,"Label"]
CortVol.Meta.F$ElementDescription <-CortVolResults.F[CortVolResults.F$Outcome%in%CortVol.Sig.F,"ElementDescription"]
CortVol.Meta.F$Std.Beta <- CortVolResults.F[CortVolResults.F$Outcome%in%CortVol.Sig.F,"Beta_Predictor"]
CortVol.Meta.F$Std_p.value <- CortVolResults.F[CortVolResults.F$Outcome%in%CortVol.Sig.F,"FDR"]
SubCortVol.Meta.F$Label <- SubCortVolResults.F[SubCortVolResults.F$Outcome%in%SubCortVol.Sig.F ,"Label"]
SubCortVol.Meta.F$ElementDescription <- SubCortVolResults.F[SubCortVolResults.F$Outcome%in%SubCortVol.Sig.F,"ElementDescription"]
SubCortVol.Meta.F$Std.Beta <- SubCortVolResults.F[SubCortVolResults.F$Outcome%in%SubCortVol.Sig.F,"Beta_Predictor"]
SubCortVol.Meta.F$Std_p.value <- SubCortVolResults.F[SubCortVolResults.F$Outcome%in%SubCortVol.Sig.F,"FDR"]
CortThick.Meta.F$Label <- CortThickResults.F[CortThickResults.F$Outcome%in%CortThick.Sig.F,"Label"]
CortThick.Meta.F$ElementDescription <-CortThickResults.F[CortThickResults.F$Outcome%in%CortThick.Sig.F,"ElementDescription"]
CortThick.Meta.F$Std.Beta <- CortThickResults.F[CortThickResults.F$Outcome%in%CortThick.Sig.F,"Beta_Predictor"]
CortThick.Meta.F$Std_p.value <- CortThickResults.F[CortThickResults.F$Outcome%in%CortThick.Sig.F,"FDR"]
CortArea.Meta.F$Label <- CortAreaResults.F[CortAreaResults.F$Outcome%in%CortArea.Sig.F,"Label"]
CortArea.Meta.F$ElementDescription <- CortAreaResults.F[CortAreaResults.F$Outcome%in%CortArea.Sig.F,"ElementDescription"]
CortArea.Meta.F$Std.Beta <- CortAreaResults.F[CortAreaResults.F$Outcome%in%CortArea.Sig.F,"Beta_Predictor"]
CortArea.Meta.F$Std_p.value <- CortAreaResults.F[CortAreaResults.F$Outcome%in%CortArea.Sig.F,"FDR"]
SulcalDepth.Meta.F$Label <- SulcalDepthResults.F[SulcalDepthResults.F$Outcome%in%SulcalDepth.Sig.F,"Label"]
SulcalDepth.Meta.F$ElementDescription <- SulcalDepthResults.F[SulcalDepthResults.F$Outcome%in%SulcalDepth.Sig.F,"ElementDescription"]
SulcalDepth.Meta.F$Std.Beta <- SulcalDepthResults.F[SulcalDepthResults.F$Outcome%in%SulcalDepth.Sig.F,"Beta_Predictor"]
SulcalDepth.Meta.F$Std_p.value <- SulcalDepthResults.F[SulcalDepthResults.F$Outcome%in%SulcalDepth.Sig.F,"FDR"]
Meta_Betas.F <- rbind(CortVol.Meta.F, SubCortVol.Meta.F, CortThick.Meta.F, CortArea.Meta.F, SulcalDepth.Meta.F)
# Boys
CortVol.Meta.M$Label <- CortVolResults.M[CortVolResults.M$Outcome%in%CortVol.Sig.M,"Label"]
CortVol.Meta.M$ElementDescription <- CortVolResults.M[CortVolResults.M$Outcome%in%CortVol.Sig.M,"ElementDescription"]
CortVol.Meta.M$Std.Beta <- CortVolResults.M[CortVolResults.M$Outcome%in%CortVol.Sig.M,"Beta_Predictor"]
CortVol.Meta.M$Std_p.value <- CortVolResults.M[CortVolResults.M$Outcome%in%CortVol.Sig.M,"FDR"]
SubCortVol.Meta.M$Label <- SubCortVolResults.M[SubCortVolResults.M$Outcome%in%SubCortVol.Sig.M ,"Label"]
SubCortVol.Meta.M$ElementDescription <- SubCortVolResults.M[SubCortVolResults.M$Outcome%in%SubCortVol.Sig.M,"ElementDescription"]
SubCortVol.Meta.M$Std.Beta <- SubCortVolResults.M[SubCortVolResults.M$Outcome%in%SubCortVol.Sig.M,"Beta_Predictor"]
SubCortVol.Meta.M$Std_p.value <- SubCortVolResults.M[SubCortVolResults.M$Outcome%in%SubCortVol.Sig.M,"FDR"]
CortThick.Meta.M$Label <- CortThickResults.M[CortThickResults.M$Outcome%in%CortThick.Sig.M,"Label"]
CortThick.Meta.M$ElementDescription <- CortThickResults.M[CortThickResults.M$Outcome%in%CortThick.Sig.M,"ElementDescription"]
CortThick.Meta.M$Std.Beta <- CortThickResults.M[CortThickResults.M$Outcome%in%CortThick.Sig.M,"Beta_Predictor"]
CortThick.Meta.M$Std_p.value <- CortThickResults.M[CortThickResults.M$Outcome%in%CortThick.Sig.M,"FDR"]
CortArea.Meta.M$Label <- CortAreaResults.M[CortAreaResults.M$Outcome%in%CortArea.Sig.M,"Label"]
CortArea.Meta.M$ElementDescription <- CortAreaResults.M[CortAreaResults.M$Outcome%in%CortArea.Sig.M,"ElementDescription"]
CortArea.Meta.M$Std.Beta <- CortAreaResults.M[CortAreaResults.M$Outcome%in%CortArea.Sig.M,"Beta_Predictor"]
CortArea.Meta.M$Std_p.value <- CortAreaResults.M[CortAreaResults.M$Outcome%in%CortArea.Sig.M,"FDR"]
SulcalDepth.Meta.M$Label <- SulcalDepthResults.M[SulcalDepthResults.M$Outcome%in%SulcalDepth.Sig.M,"Label"]
SulcalDepth.Meta.M$ElementDescription <- SulcalDepthResults.M[SulcalDepthResults.M$Outcome%in%SulcalDepth.Sig.M,"ElementDescription"]
SulcalDepth.Meta.M$Std.Beta <- SulcalDepthResults.M[SulcalDepthResults.M$Outcome%in%SulcalDepth.Sig.M,"Beta_Predictor"]
SulcalDepth.Meta.M$Std_p.value <- SulcalDepthResults.M[SulcalDepthResults.M$Outcome%in%SulcalDepth.Sig.M,"FDR"]
Meta_Betas.M <- rbind(CortVol.Meta.M, SubCortVol.Meta.M,CortThick.Meta.M, SulcalDepth.Meta.M)#CortArea.Meta.M not sig
plotMeta.M <- ggplot(data = Meta_Betas.M,aes(y = reorder(ElementDescription, PooledBeta),x = PooledBeta))+
geom_point(shape=23, fill="black",size=3)+
geom_errorbar(aes(xmin=ci.lb, xmax=ci.ub), colour="black", width=.1)+
labs(x="Pooled Beta", y="Brain Data Modalities and Regions", title = 'Males' )+
geom_vline(xintercept = 0, size=1.25)+
coord_cartesian(xlim = c(-.14,.14))+
theme_bw()+
theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
plot.title = element_text(size = 11,hjust = 0.5),axis.title.x = element_text(size = 8))
plotMeta.F <- ggplot(data = Meta_Betas.F,aes(y = reorder(ElementDescription, PooledBeta),x = PooledBeta))+
geom_point(shape=23, fill="black",size=3)+
geom_errorbar(aes(xmin=ci.lb, xmax=ci.ub), colour="black", width=.1)+
labs(x="Pooled Beta", y="Brain Data Modalities and Regions", title = 'Females')+
geom_vline(xintercept = 0, size=1.25)+
coord_cartesian(xlim = c(-.14,.14))+
theme_bw()+
theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
plot.title = element_text(size = 11,hjust = 0.5),axis.title.x = element_text(size = 8))
grid.arrange(plotMeta.F, plotMeta.M, ncol=2)
tiff(filename = "Figure4", height = 6,width = 12, units = 'in', res = 1200, compression = "zip")
grid.arrange(plotMeta.F, plotMeta.M, ncol=2)
dev.off()
## png
## 2
abcd_full$brainvol.pgs_z <- scale(abcd_full$brainvol.pgs) %>% as.numeric()
num.descriptives.full <- mean.describe2(x = abcd_full[,
c("A_Prenatal_Burden_Score",
'interview_age' ,# Child’s age
'demo_comb_income_v2',# Combined income
'demo_caregiver_ed' ,# Averaged caregivers education
'fes_fam_env_score' ,# Family Conflict Subscale - Family Environment Scale
'devhx_3_p' ,# Maternal age at birth
'asr_scr_totprob_t' ,# Parent Total Problems - ASEBA
'reshist_addr1_adi_wsum',
'Average_Screentime',
"brainvol.pgs_z")],
group = abcd_full$sex
)
rownames(num.descriptives.full) <- c("Prenatal Adverse Exposure Score, Mean (SD)",
"Age in months, Mean (SD)",
"Family combined income, Mean (SD)",
"Averaged carigiver's education, Mean (SD)",
"Family conflict subscale, Mean (SD)",
"Maternal age at birth, Mean (SD)",
"Parent Total Problems - ASEBA, Mean (SD)",
"Neighborhood safety, Mean (SD)",
"Average screen time use, Mean (SD)",
"Brain volume polygenic score, Mean (SD)"
)
colnames(num.descriptives.full) <- c("Females", 'Males')
# Running t. tests
t.values <- c()
p.values <- c()
iID <- 0
for( i in c("A_Prenatal_Burden_Score",
'interview_age' ,# child’s age
'demo_comb_income_v2',# Combined income
'demo_caregiver_ed' ,# Averaged caregivers education
'fes_fam_env_score' ,# Family Conflict Subscale - Family Environment Scale
'devhx_3_p' ,# Maternal age at birth
'asr_scr_totprob_t' ,# Parent Total Problems - ASEBA
'neighborhood_safety',
'Average_Screentime',
'brainvol.pgs_z')){
iID <- iID+1
p.values[iID] <- t.test(abcd_full[,i] ~ abcd_full$sex, var.equal=T)$p.value
t.values[iID] <- t.test(abcd_full[,i] ~ abcd_full$sex, var.equal=T)$statistic
}
num.descriptives.full$stat.value <- t.values
num.descriptives.full$p.value <- p.values
prop.descriptives.full.race <- by( abcd_full[,c('demo_race_ethnicity')],abcd_full$sex,propfunc )
prop.descriptives.full.race <- cbind(prop.descriptives.full.race[[1]],prop.descriptives.full.race[[2]]) #List to matrix
prop.descriptives.full.race <- prop.descriptives.full.race[,c(2:3,5:6)]# Selecting variables, values and descriptives
prop.descriptives.full.race$Females <- paste0(prop.descriptives.full.race$N, " (", prop.descriptives.full.race$`%`,")")#
prop.descriptives.full.race$Males <- paste0(prop.descriptives.full.race$N.1, " (", prop.descriptives.full.race$`%.1`,")")
prop.descriptives.full.race <- rbind(NA,prop.descriptives.full.race)
rownames(prop.descriptives.full.race)[1] <- "Ethnicity, N (%)"
prop.descriptives.full.race <- prop.descriptives.full.race[,c("Females", 'Males')]
prop.descriptives.full.race$stat.value <- NA
prop.descriptives.full.race$p.value <- NA
prop.descriptives.full.race$stat.value[1]<- chisq.test(abcd_full$demo_race_ethnicity, abcd_full$sex)$statistic
prop.descriptives.full.race$p.value[1] <- chisq.test(abcd_full$demo_race_ethnicity, abcd_full$sex)$p.value
## Preparing Labels
Prenatal.vars <- Hmisc::Cs(devhx_6_p, # Unplanned pregnancy
devhx_13_3_p, # C-section
A_Burden_Gestational_Age,
A_index_birth_weight,
devhx_8_tobacco,
devhx_8_alcohol,
devhx_8_marijuana,
A_Burden_Pregnan_Complications,
A_Burden_Birth_Complications)
prop.descriptives.full.PrenatalAdversity <- by( abcd_full[,Prenatal.vars],abcd_full$sex,propfunc )
prop.descriptives.full.PrenatalAdversity <- cbind(prop.descriptives.full.PrenatalAdversity[[1]],prop.descriptives.full.PrenatalAdversity[[2]]) #List to matrix
prop.descriptives.full.PrenatalAdversity <- prop.descriptives.full.PrenatalAdversity[seq(2,18, by=2),c(3:4,7:8)]# Selecting variables, values and descriptives
prop.descriptives.full.PrenatalAdversity$Females <- paste0(prop.descriptives.full.PrenatalAdversity$N, " (", prop.descriptives.full.PrenatalAdversity$`%`,")")#
prop.descriptives.full.PrenatalAdversity$Males <- paste0(prop.descriptives.full.PrenatalAdversity$N.1, " (", prop.descriptives.full.PrenatalAdversity$`%.1`,")")
prop.descriptives.full.PrenatalAdversity <- rbind(NA,prop.descriptives.full.PrenatalAdversity)
rownames(prop.descriptives.full.PrenatalAdversity)[1] <- "Adverse Prenatal Exposures, N (%)"
prop.descriptives.full.PrenatalAdversity <- prop.descriptives.full.PrenatalAdversity[,c("Females", 'Males')]
prop.descriptives.full.PrenatalAdversity$stat.value <- NA
prop.descriptives.full.PrenatalAdversity$p.value <- NA
iID <- 1
for( i in Prenatal.vars){
iID <- iID+1
prop.descriptives.full.PrenatalAdversity$stat.value[iID]<- chisq.test(abcd_full[,i], abcd_full$sex)$statistic
prop.descriptives.full.PrenatalAdversity$p.value[iID] <- chisq.test(abcd_full[,i], abcd_full$sex)$p.value
}
Prenatal.labels <- c("Unplanned pregnancy",
"C-Section",
"Gestational Age",
"Birth weight",
"Tobacco use",
"Alcohol use",
"Marijuana use",
"Pregnancy complications",
"Birth complications")
rownames(prop.descriptives.full.PrenatalAdversity) <- c("Adverse Prenatal Exposures, N (%)", Prenatal.labels )
# Merging Descriptives
participants.descriptives.full <- rbind(num.descriptives.full,prop.descriptives.full.race,prop.descriptives.full.PrenatalAdversity)
#Saving eTable1
write.xlsx(x = cbind(participants.descriptives,participants.descriptives.full),
file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
sheetName = 'eTable1',
row.names = T,
showNA = F,
append = T
)
kable(cbind(participants.descriptives,participants.descriptives.full),
digits = 2 ,
caption = "eTable 1 - Comparison of study variables between full sample and complete cases sample") %>%
add_header_above(c(" "= 1, "Study sample" = 4, "ABCD full sample"=4)) %>%
kableExtra::kable_styling(position = "center")
| Females | Males | stat.value | p.value | Females | Males | stat.value | p.value | |
|---|---|---|---|---|---|---|---|---|
| Prenatal Adverse Exposure Score, Mean (SD) | 2.19 (1.53) | 2.21 (1.52) | -0.48 | 0.63 | 2.21 (1.53) | 2.21 (1.52) | -0.26 | 0.80 |
| Age in months, Mean (SD) | 118.76 (7.51) | 119.19 (7.55) | -2.61 | 0.01 | 118.87 (7.48) | 119.22 (7.52) | -2.48 | 0.01 |
| Family combined income, Mean (SD) | 7.35 (2.35) | 7.38 (2.35) | -0.57 | 0.57 | 7.22 (2.42) | 7.24 (2.42) | -0.51 | 0.61 |
| Averaged carigiver’s education, Mean (SD) | 16.63 (2.47) | 16.64 (2.48) | -0.23 | 0.82 | 16.35 (2.75) | 16.42 (2.65) | -1.43 | 0.15 |
| Family conflict subscale, Mean (SD) | 2.41 (1.94) | 2.62 (1.98) | -4.66 | 0.00 | 2.44 (1.93) | 2.63 (1.99) | -5.32 | 0.00 |
| Maternal age at birth, Mean (SD) | 29.55 (6.09) | 29.66 (6) | -0.84 | 0.40 | 29.29 (6.32) | 29.51 (6.23) | -1.87 | 0.06 |
| Parent Total Problems - ASEBA, Mean (SD) | 42.67 (10.1) | 43.24 (10.16) | -2.51 | 0.01 | 42.72 (10.2) | 43.24 (10.24) | -2.69 | 0.01 |
| Neighborhood safety, Mean (SD) | 94.51 (20.72) | 93.72 (20.55) | -3.26 | 0.00 | 94.71 (21.33) | 94.32 (20.95) | -2.72 | 0.01 |
| Average screen time use, Mean (SD) | 3.05 (2.08) | 3.33 (2.17) | -5.90 | 0.00 | 3.08 (2.13) | 3.41 (2.25) | -7.84 | 0.00 |
| Brain volume polygenic score, Mean (SD) | 0.06 (0.99) | 0.07 (0.98) | -0.46 | 0.65 | -0.02 (1) | 0.01 (1) | -1.63 | 0.10 |
| Ethnicity, N (%) | 5.83 | 0.21 | 5.02 | 0.29 | ||||
| White | 2243 (57.79) | 2481 (59.55) | 2826 (52.53) | 3147 (54.31) | ||||
| Hispanic | 703 (18.11) | 752 (18.05) | 1112 (20.67) | 1194 (20.6) | ||||
| Black | 651 (16.77) | 636 (15.27) | 1016 (18.88) | 1019 (17.58) | ||||
| Asian | 141 (3.63) | 164 (3.94) | 229 (4.26) | 228 (3.93) | ||||
| Other | 143 (3.68) | 133 (3.19) | 197 (3.66) | 207 (3.57) | ||||
| Adverse Prenatal Exposures, N (%) | ||||||||
| Unplanned pregnancy | 1443 (36.84) | 1462 (34.84) | 3.43 | 0.06 | 2126 (39.92) | 2180 (37.95) | 4.41 | 0.04 |
| C-Section | 1440 (36.76) | 1650 (39.32) | 5.52 | 0.02 | 1973 (36.68) | 2269 (39.12) | 6.96 | 0.01 |
| Gestational Age | 542 (13.84) | 630 (15.01) | 2.18 | 0.14 | 739 (13.74) | 820 (14.13) | 0.33 | 0.57 |
| Birth weight | 595 (15.19) | 607 (14.47) | 0.79 | 0.38 | 747 (15.49) | 770 (14.75) | 1.02 | 0.31 |
| Tobacco use | 495 (12.64) | 538 (12.82) | 0.05 | 0.83 | 733 (13.81) | 782 (13.61) | 0.07 | 0.79 |
| Alcohol use | 1081 (27.6) | 1089 (25.95) | 2.71 | 0.10 | 1351 (26.31) | 1399 (25.27) | 1.46 | 0.23 |
| Marijuana use | 220 (5.62) | 220 (5.24) | 0.48 | 0.49 | 322 (6.09) | 320 (5.61) | 1.06 | 0.30 |
| Pregnancy complications | 1729 (44.14) | 1786 (42.56) | 1.99 | 0.16 | 2330 (42.76) | 2412 (41.13) | 3.03 | 0.08 |
| Birth complications | 1040 (26.55) | 1282 (30.55) | 15.69 | 0.00 | 1360 (24.96) | 1682 (28.68) | 19.69 | 0.00 |
#Saving eTable2
write.xlsx(x = cbind(Main_results.F[,-c(1,3)], Main_results.M[,6:11]),#Omit Main effect ID and Aliases
file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
sheetName = 'eTable2',
row.names = F,
showNA = F,
append = T
)
kable( cbind(Main_results.F[,-c(1,3)], Main_results.M[,6:11]),#Omit Main effect ID and Aliases
caption = 'eTable 2 - List of Associations between Prenatal Adverse Exposures and Brain Regions',
digits = 3
) %>%
add_header_above(c(" "= 3, "Females" = 6, "Males"=6)) %>%
kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.049 | 0.015 | 3917 | 0.117 | 0.001 | 0.023 | -0.015 | 0.015 | 4196 | 0.117 | 0.319 | 0.483 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.017 | 0.015 | 3917 | 0.150 | 0.259 | 0.539 | 0.013 | 0.015 | 4196 | 0.126 | 0.402 | 0.536 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | 0.013 | 0.014 | 3917 | 0.183 | 0.355 | 0.656 | -0.029 | 0.014 | 4196 | 0.182 | 0.045 | 0.161 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | A_Prenatal_Burden_Score_z | -0.009 | 0.015 | 3917 | 0.114 | 0.530 | 0.879 | -0.001 | 0.015 | 4196 | 0.108 | 0.934 | 0.934 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | A_Prenatal_Burden_Score_z | -0.003 | 0.016 | 3917 | 0.101 | 0.839 | 0.929 | -0.003 | 0.015 | 4196 | 0.094 | 0.850 | 0.864 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | A_Prenatal_Burden_Score_z | -0.003 | 0.013 | 3917 | 0.247 | 0.851 | 0.929 | -0.019 | 0.013 | 4196 | 0.266 | 0.143 | 0.313 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.041 | 0.014 | 3917 | 0.223 | 0.004 | 0.043 | -0.034 | 0.014 | 4196 | 0.215 | 0.016 | 0.093 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.002 | 0.013 | 3917 | 0.257 | 0.861 | 0.929 | 0.006 | 0.013 | 4196 | 0.254 | 0.654 | 0.717 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.003 | 0.014 | 3917 | 0.223 | 0.850 | 0.929 | 0.004 | 0.014 | 4196 | 0.206 | 0.767 | 0.815 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.018 | 0.014 | 3917 | 0.318 | 0.191 | 0.480 | 0.021 | 0.014 | 4196 | 0.277 | 0.130 | 0.313 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.011 | 0.012 | 3917 | 0.407 | 0.368 | 0.659 | -0.026 | 0.012 | 4196 | 0.409 | 0.027 | 0.116 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | A_Prenatal_Burden_Score_z | -0.023 | 0.015 | 3917 | 0.162 | 0.113 | 0.367 | -0.005 | 0.014 | 4196 | 0.168 | 0.723 | 0.780 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.040 | 0.013 | 3917 | 0.062 | 0.002 | 0.027 | -0.012 | 0.013 | 4196 | 0.103 | 0.357 | 0.517 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.050 | 0.013 | 3917 | 0.334 | 0.000 | 0.003 | -0.029 | 0.013 | 4196 | 0.319 | 0.024 | 0.113 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.025 | 0.016 | 3917 | 0.104 | 0.110 | 0.367 | 0.010 | 0.015 | 4196 | 0.137 | 0.490 | 0.594 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.011 | 0.014 | 3917 | 0.214 | 0.448 | 0.761 | -0.049 | 0.014 | 4196 | 0.209 | 0.001 | 0.014 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | A_Prenatal_Burden_Score_z | -0.014 | 0.015 | 3917 | 0.155 | 0.357 | 0.656 | 0.007 | 0.015 | 4196 | 0.125 | 0.624 | 0.707 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.009 | 0.015 | 3917 | 0.178 | 0.559 | 0.895 | -0.010 | 0.014 | 4196 | 0.198 | 0.498 | 0.594 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.006 | 0.016 | 3917 | 0.094 | 0.697 | 0.929 | -0.027 | 0.015 | 4196 | 0.110 | 0.077 | 0.251 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | A_Prenatal_Burden_Score_z | -0.020 | 0.015 | 3917 | 0.111 | 0.199 | 0.483 | -0.007 | 0.015 | 4196 | 0.129 | 0.646 | 0.717 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | A_Prenatal_Burden_Score_z | -0.001 | 0.013 | 3917 | 0.327 | 0.938 | 0.967 | -0.030 | 0.013 | 4196 | 0.306 | 0.025 | 0.113 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.005 | 0.014 | 3917 | 0.275 | 0.747 | 0.929 | -0.015 | 0.014 | 4196 | 0.251 | 0.266 | 0.421 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 3917 | 0.314 | 0.673 | 0.929 | -0.040 | 0.013 | 4196 | 0.312 | 0.002 | 0.026 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | A_Prenatal_Burden_Score_z | -0.004 | 0.012 | 3917 | 0.382 | 0.764 | 0.929 | -0.020 | 0.013 | 4196 | 0.353 | 0.119 | 0.313 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.023 | 0.014 | 3917 | 0.255 | 0.106 | 0.367 | -0.020 | 0.013 | 4196 | 0.281 | 0.137 | 0.313 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.000 | 0.013 | 3917 | 0.310 | 0.970 | 0.973 | -0.003 | 0.013 | 4196 | 0.281 | 0.851 | 0.864 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.000 | 0.013 | 3917 | 0.311 | 0.973 | 0.973 | -0.017 | 0.012 | 4196 | 0.356 | 0.159 | 0.320 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | A_Prenatal_Burden_Score_z | -0.027 | 0.013 | 3917 | 0.282 | 0.047 | 0.195 | -0.019 | 0.014 | 4196 | 0.257 | 0.161 | 0.320 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.007 | 0.013 | 3917 | 0.312 | 0.579 | 0.895 | -0.008 | 0.013 | 4196 | 0.306 | 0.521 | 0.611 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | A_Prenatal_Burden_Score_z | -0.019 | 0.014 | 3917 | 0.228 | 0.191 | 0.480 | -0.021 | 0.014 | 4196 | 0.255 | 0.137 | 0.313 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | A_Prenatal_Burden_Score_z | 0.031 | 0.016 | 3917 | 0.101 | 0.049 | 0.195 | 0.017 | 0.015 | 4196 | 0.112 | 0.259 | 0.419 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | A_Prenatal_Burden_Score_z | 0.033 | 0.015 | 3917 | 0.064 | 0.030 | 0.159 | 0.032 | 0.015 | 4196 | 0.073 | 0.036 | 0.142 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.003 | 0.015 | 3917 | 0.168 | 0.854 | 0.929 | -0.024 | 0.015 | 4196 | 0.156 | 0.101 | 0.298 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.060 | 0.013 | 3917 | 0.305 | 0.000 | 0.000 | -0.029 | 0.013 | 4196 | 0.298 | 0.024 | 0.113 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.007 | 0.015 | 3917 | 0.143 | 0.655 | 0.929 | -0.014 | 0.014 | 4196 | 0.151 | 0.311 | 0.481 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.001 | 0.016 | 3917 | 0.101 | 0.928 | 0.967 | 0.013 | 0.015 | 4196 | 0.085 | 0.394 | 0.536 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.008 | 0.015 | 3917 | 0.173 | 0.594 | 0.898 | -0.013 | 0.014 | 4196 | 0.167 | 0.369 | 0.522 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | A_Prenatal_Burden_Score_z | 0.004 | 0.015 | 3917 | 0.199 | 0.799 | 0.929 | 0.013 | 0.014 | 4196 | 0.172 | 0.376 | 0.522 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | A_Prenatal_Burden_Score_z | 0.030 | 0.016 | 3917 | 0.108 | 0.061 | 0.231 | 0.015 | 0.015 | 4196 | 0.099 | 0.346 | 0.512 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 3917 | 0.344 | 0.674 | 0.929 | -0.016 | 0.013 | 4196 | 0.353 | 0.205 | 0.367 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.034 | 0.014 | 3917 | 0.248 | 0.014 | 0.122 | -0.020 | 0.014 | 4196 | 0.237 | 0.141 | 0.313 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.007 | 0.013 | 3917 | 0.289 | 0.573 | 0.895 | 0.016 | 0.013 | 4196 | 0.285 | 0.232 | 0.405 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.023 | 0.015 | 3917 | 0.156 | 0.122 | 0.378 | -0.045 | 0.014 | 4196 | 0.162 | 0.002 | 0.026 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.005 | 0.013 | 3917 | 0.357 | 0.732 | 0.929 | 0.019 | 0.013 | 4196 | 0.334 | 0.135 | 0.313 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.027 | 0.012 | 3917 | 0.245 | 0.023 | 0.140 | -0.029 | 0.012 | 4196 | 0.256 | 0.013 | 0.091 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | A_Prenatal_Burden_Score_z | -0.017 | 0.015 | 3917 | 0.213 | 0.251 | 0.539 | -0.018 | 0.014 | 4196 | 0.196 | 0.194 | 0.356 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.028 | 0.013 | 3917 | 0.248 | 0.033 | 0.162 | 0.018 | 0.013 | 4196 | 0.261 | 0.164 | 0.320 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.012 | 3917 | 0.374 | 0.000 | 0.003 | -0.048 | 0.012 | 4196 | 0.369 | 0.000 | 0.005 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | A_Prenatal_Burden_Score_z | 0.003 | 0.015 | 3917 | 0.139 | 0.823 | 0.929 | 0.020 | 0.014 | 4196 | 0.190 | 0.169 | 0.320 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | A_Prenatal_Burden_Score_z | -0.014 | 0.015 | 3917 | 0.170 | 0.328 | 0.655 | -0.010 | 0.015 | 4196 | 0.177 | 0.493 | 0.594 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.002 | 0.015 | 3917 | 0.147 | 0.908 | 0.965 | -0.011 | 0.015 | 4196 | 0.131 | 0.458 | 0.587 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.008 | 0.015 | 3917 | 0.167 | 0.612 | 0.905 | -0.022 | 0.014 | 4196 | 0.202 | 0.125 | 0.313 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | A_Prenatal_Burden_Score_z | -0.013 | 0.016 | 3917 | 0.092 | 0.418 | 0.729 | -0.032 | 0.015 | 4196 | 0.093 | 0.038 | 0.142 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | A_Prenatal_Burden_Score_z | -0.019 | 0.015 | 3917 | 0.135 | 0.218 | 0.511 | -0.003 | 0.015 | 4196 | 0.139 | 0.821 | 0.859 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.027 | 0.013 | 3917 | 0.296 | 0.046 | 0.195 | -0.046 | 0.013 | 4196 | 0.278 | 0.001 | 0.014 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.016 | 0.014 | 3917 | 0.213 | 0.262 | 0.539 | -0.041 | 0.014 | 4196 | 0.207 | 0.003 | 0.037 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | A_Prenatal_Burden_Score_z | -0.013 | 0.014 | 3917 | 0.261 | 0.344 | 0.656 | -0.007 | 0.013 | 4196 | 0.264 | 0.588 | 0.677 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | A_Prenatal_Burden_Score_z | 0.015 | 0.012 | 3917 | 0.352 | 0.232 | 0.526 | -0.017 | 0.012 | 4196 | 0.357 | 0.165 | 0.320 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.033 | 0.015 | 3917 | 0.152 | 0.028 | 0.159 | -0.017 | 0.015 | 4196 | 0.146 | 0.250 | 0.415 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.020 | 0.014 | 3917 | 0.229 | 0.140 | 0.381 | -0.016 | 0.013 | 4196 | 0.238 | 0.239 | 0.407 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.004 | 0.013 | 3917 | 0.291 | 0.756 | 0.929 | -0.009 | 0.012 | 4196 | 0.310 | 0.481 | 0.594 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | A_Prenatal_Burden_Score_z | -0.004 | 0.014 | 3917 | 0.256 | 0.772 | 0.929 | -0.023 | 0.013 | 4196 | 0.245 | 0.083 | 0.256 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.005 | 0.013 | 3917 | 0.266 | 0.685 | 0.929 | 0.009 | 0.012 | 4196 | 0.287 | 0.450 | 0.587 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | A_Prenatal_Burden_Score_z | -0.021 | 0.014 | 3917 | 0.233 | 0.139 | 0.381 | -0.034 | 0.014 | 4196 | 0.225 | 0.015 | 0.092 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.036 | 0.015 | 3917 | 0.082 | 0.021 | 0.140 | 0.043 | 0.015 | 4196 | 0.126 | 0.004 | 0.037 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | A_Prenatal_Burden_Score_z | 0.037 | 0.016 | 3917 | 0.116 | 0.018 | 0.138 | 0.041 | 0.015 | 4196 | 0.130 | 0.007 | 0.060 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | A_Prenatal_Burden_Score_z | -0.022 | 0.015 | 3917 | 0.129 | 0.131 | 0.381 | -0.028 | 0.014 | 4196 | 0.125 | 0.048 | 0.164 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.040 | 0.013 | 3917 | 0.324 | 0.002 | 0.027 | -0.034 | 0.013 | 4196 | 0.322 | 0.008 | 0.060 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | A_Prenatal_Burden_Score_z | 0.042 | 0.016 | 3917 | 0.106 | 0.008 | 0.041 | 0.010 | 0.010 | 4196 | 0.088 | 0.309 | 0.790 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | A_Prenatal_Burden_Score_z | -0.032 | 0.012 | 3917 | 0.363 | 0.008 | 0.041 | -0.004 | 0.008 | 4196 | 0.328 | 0.632 | 0.860 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | A_Prenatal_Burden_Score_z | -0.034 | 0.012 | 3917 | 0.454 | 0.004 | 0.041 | -0.004 | 0.008 | 4196 | 0.439 | 0.645 | 0.860 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | A_Prenatal_Burden_Score_z | -0.019 | 0.013 | 3917 | 0.265 | 0.155 | 0.281 | -0.013 | 0.009 | 4196 | 0.244 | 0.133 | 0.533 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | A_Prenatal_Burden_Score_z | -0.022 | 0.014 | 3917 | 0.194 | 0.116 | 0.231 | -0.002 | 0.009 | 4196 | 0.194 | 0.856 | 0.951 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | A_Prenatal_Burden_Score_z | -0.018 | 0.014 | 3917 | 0.291 | 0.199 | 0.284 | 0.000 | 0.009 | 4196 | 0.251 | 0.996 | 0.996 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | A_Prenatal_Burden_Score_z | 0.011 | 0.013 | 3917 | 0.368 | 0.368 | 0.460 | 0.001 | 0.008 | 4196 | 0.373 | 0.933 | 0.982 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | A_Prenatal_Burden_Score_z | -0.028 | 0.013 | 3917 | 0.306 | 0.036 | 0.089 | 0.009 | 0.009 | 4196 | 0.301 | 0.316 | 0.790 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | A_Prenatal_Burden_Score_z | -0.019 | 0.014 | 3917 | 0.138 | 0.178 | 0.284 | -0.022 | 0.009 | 4196 | 0.190 | 0.014 | 0.168 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | A_Prenatal_Burden_Score_z | 0.004 | 0.011 | 3917 | 0.408 | 0.708 | 0.746 | -0.003 | 0.007 | 4196 | 0.427 | 0.693 | 0.866 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | A_Prenatal_Burden_Score_z | 0.036 | 0.016 | 3917 | 0.104 | 0.020 | 0.062 | 0.024 | 0.010 | 4196 | 0.093 | 0.017 | 0.168 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | A_Prenatal_Burden_Score_z | -0.029 | 0.012 | 3917 | 0.335 | 0.019 | 0.062 | -0.006 | 0.008 | 4196 | 0.302 | 0.470 | 0.860 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | A_Prenatal_Burden_Score_z | -0.041 | 0.011 | 3917 | 0.464 | 0.000 | 0.006 | -0.008 | 0.008 | 4196 | 0.439 | 0.268 | 0.790 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | A_Prenatal_Burden_Score_z | -0.011 | 0.013 | 3917 | 0.270 | 0.426 | 0.501 | -0.015 | 0.009 | 4196 | 0.262 | 0.078 | 0.388 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | A_Prenatal_Burden_Score_z | -0.015 | 0.014 | 3917 | 0.236 | 0.295 | 0.393 | 0.005 | 0.009 | 4196 | 0.242 | 0.563 | 0.860 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | A_Prenatal_Burden_Score_z | -0.028 | 0.014 | 3917 | 0.261 | 0.042 | 0.092 | -0.006 | 0.009 | 4196 | 0.236 | 0.522 | 0.860 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 3917 | 0.361 | 0.621 | 0.690 | -0.005 | 0.008 | 4196 | 0.348 | 0.546 | 0.860 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | A_Prenatal_Burden_Score_z | -0.002 | 0.014 | 3917 | 0.316 | 0.906 | 0.906 | 0.017 | 0.009 | 4196 | 0.329 | 0.047 | 0.311 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | A_Prenatal_Burden_Score_z | -0.033 | 0.015 | 3917 | 0.197 | 0.022 | 0.062 | -0.006 | 0.009 | 4196 | 0.222 | 0.533 | 0.860 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | A_Prenatal_Burden_Score_z | 0.015 | 0.011 | 3917 | 0.431 | 0.191 | 0.284 | 0.001 | 0.007 | 4196 | 0.428 | 0.845 | 0.951 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.045 | 0.014 | 3917 | 0.252 | 0.002 | 0.016 | -0.028 | 0.014 | 4196 | 0.241 | 0.043 | 0.132 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.016 | 0.016 | 3917 | 0.071 | 0.327 | 0.563 | 0.007 | 0.015 | 4196 | 0.063 | 0.647 | 0.813 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.015 | 0.012 | 3917 | 0.398 | 0.225 | 0.532 | -0.009 | 0.012 | 4196 | 0.417 | 0.424 | 0.644 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | A_Prenatal_Burden_Score_z | -0.019 | 0.014 | 3917 | 0.312 | 0.167 | 0.474 | 0.023 | 0.013 | 4196 | 0.311 | 0.081 | 0.193 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | A_Prenatal_Burden_Score_z | 0.035 | 0.016 | 3917 | 0.065 | 0.026 | 0.134 | -0.012 | 0.015 | 4196 | 0.093 | 0.436 | 0.644 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | A_Prenatal_Burden_Score_z | 0.016 | 0.012 | 3917 | 0.407 | 0.186 | 0.486 | 0.002 | 0.012 | 4196 | 0.419 | 0.860 | 0.909 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.012 | 0.010 | 3917 | 0.573 | 0.238 | 0.532 | -0.023 | 0.011 | 4196 | 0.536 | 0.027 | 0.098 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.010 | 0.012 | 3917 | 0.405 | 0.430 | 0.650 | 0.002 | 0.012 | 4196 | 0.403 | 0.882 | 0.909 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.014 | 0.016 | 3917 | 0.090 | 0.376 | 0.597 | 0.021 | 0.015 | 4196 | 0.097 | 0.182 | 0.328 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.008 | 0.010 | 3917 | 0.538 | 0.417 | 0.644 | 0.016 | 0.010 | 4196 | 0.539 | 0.098 | 0.215 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.063 | 0.013 | 3917 | 0.335 | 0.000 | 0.000 | 0.044 | 0.013 | 4196 | 0.347 | 0.001 | 0.012 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | A_Prenatal_Burden_Score_z | -0.014 | 0.013 | 3917 | 0.305 | 0.301 | 0.563 | 0.030 | 0.012 | 4196 | 0.338 | 0.016 | 0.064 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.045 | 0.015 | 3917 | 0.096 | 0.003 | 0.024 | 0.040 | 0.015 | 4196 | 0.124 | 0.006 | 0.032 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.047 | 0.012 | 3917 | 0.427 | 0.000 | 0.003 | -0.049 | 0.012 | 4196 | 0.434 | 0.000 | 0.001 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.047 | 0.016 | 3917 | 0.090 | 0.003 | 0.024 | 0.011 | 0.015 | 4196 | 0.099 | 0.453 | 0.655 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.008 | 0.013 | 3917 | 0.422 | 0.519 | 0.735 | -0.034 | 0.012 | 4196 | 0.452 | 0.004 | 0.025 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | A_Prenatal_Burden_Score_z | 0.022 | 0.013 | 3917 | 0.384 | 0.094 | 0.355 | 0.010 | 0.013 | 4196 | 0.385 | 0.432 | 0.644 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.008 | 0.015 | 3917 | 0.239 | 0.584 | 0.779 | -0.027 | 0.014 | 4196 | 0.224 | 0.055 | 0.149 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.015 | 0.014 | 3917 | 0.324 | 0.266 | 0.549 | -0.041 | 0.013 | 4196 | 0.349 | 0.002 | 0.020 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | A_Prenatal_Burden_Score_z | -0.007 | 0.014 | 3917 | 0.275 | 0.620 | 0.811 | 0.032 | 0.013 | 4196 | 0.267 | 0.017 | 0.065 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | A_Prenatal_Burden_Score_z | -0.002 | 0.012 | 3917 | 0.430 | 0.849 | 0.931 | -0.018 | 0.012 | 4196 | 0.439 | 0.135 | 0.271 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.006 | 0.015 | 3917 | 0.131 | 0.687 | 0.849 | -0.011 | 0.015 | 4196 | 0.126 | 0.471 | 0.668 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | A_Prenatal_Burden_Score_z | 0.000 | 0.012 | 3917 | 0.498 | 0.987 | 0.987 | -0.027 | 0.011 | 4196 | 0.518 | 0.015 | 0.064 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | A_Prenatal_Burden_Score_z | -0.016 | 0.011 | 3917 | 0.550 | 0.148 | 0.474 | -0.002 | 0.011 | 4196 | 0.549 | 0.866 | 0.909 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.018 | 0.015 | 3917 | 0.097 | 0.242 | 0.532 | 0.040 | 0.015 | 4196 | 0.121 | 0.007 | 0.036 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | -0.003 | 0.011 | 3917 | 0.543 | 0.761 | 0.862 | 0.007 | 0.011 | 4196 | 0.534 | 0.503 | 0.698 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.007 | 0.011 | 3917 | 0.572 | 0.498 | 0.722 | 0.004 | 0.010 | 4196 | 0.582 | 0.690 | 0.813 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | A_Prenatal_Burden_Score_z | -0.013 | 0.010 | 3917 | 0.619 | 0.184 | 0.486 | -0.017 | 0.010 | 4196 | 0.589 | 0.098 | 0.215 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.003 | 0.012 | 3917 | 0.468 | 0.778 | 0.868 | 0.004 | 0.011 | 4196 | 0.494 | 0.692 | 0.813 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | A_Prenatal_Burden_Score_z | 0.001 | 0.011 | 3917 | 0.516 | 0.930 | 0.967 | -0.017 | 0.011 | 4196 | 0.527 | 0.106 | 0.226 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.061 | 0.016 | 3917 | 0.123 | 0.000 | 0.002 | 0.031 | 0.015 | 4196 | 0.087 | 0.043 | 0.132 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | A_Prenatal_Burden_Score_z | 0.027 | 0.016 | 3917 | 0.122 | 0.083 | 0.332 | 0.032 | 0.015 | 4196 | 0.164 | 0.032 | 0.108 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.039 | 0.014 | 3917 | 0.266 | 0.006 | 0.037 | -0.014 | 0.014 | 4196 | 0.259 | 0.316 | 0.512 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | A_Prenatal_Burden_Score_z | -0.002 | 0.015 | 3917 | 0.114 | 0.910 | 0.966 | -0.006 | 0.014 | 4196 | 0.122 | 0.681 | 0.813 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.008 | 0.015 | 3917 | 0.246 | 0.567 | 0.771 | -0.019 | 0.014 | 4196 | 0.247 | 0.183 | 0.328 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.015 | 0.016 | 3917 | 0.056 | 0.340 | 0.563 | 0.050 | 0.016 | 4196 | 0.040 | 0.001 | 0.018 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.015 | 0.013 | 3917 | 0.392 | 0.239 | 0.532 | -0.003 | 0.012 | 4196 | 0.401 | 0.790 | 0.886 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | A_Prenatal_Burden_Score_z | 0.002 | 0.013 | 3917 | 0.364 | 0.894 | 0.965 | 0.014 | 0.013 | 4196 | 0.358 | 0.275 | 0.456 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | A_Prenatal_Burden_Score_z | 0.039 | 0.016 | 3917 | 0.068 | 0.014 | 0.079 | -0.020 | 0.015 | 4196 | 0.092 | 0.182 | 0.328 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | A_Prenatal_Burden_Score_z | -0.008 | 0.012 | 3917 | 0.463 | 0.499 | 0.722 | -0.003 | 0.012 | 4196 | 0.462 | 0.795 | 0.886 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.001 | 0.010 | 3917 | 0.586 | 0.944 | 0.967 | -0.012 | 0.010 | 4196 | 0.581 | 0.223 | 0.389 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.004 | 0.012 | 3917 | 0.444 | 0.732 | 0.862 | 0.012 | 0.012 | 4196 | 0.448 | 0.329 | 0.520 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.007 | 0.016 | 3917 | 0.066 | 0.673 | 0.847 | 0.038 | 0.016 | 4196 | 0.052 | 0.014 | 0.061 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.015 | 0.010 | 3917 | 0.551 | 0.130 | 0.467 | 0.015 | 0.009 | 4196 | 0.577 | 0.119 | 0.245 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.040 | 0.014 | 3917 | 0.257 | 0.004 | 0.025 | 0.040 | 0.013 | 4196 | 0.271 | 0.003 | 0.021 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | A_Prenatal_Burden_Score_z | -0.018 | 0.013 | 3917 | 0.367 | 0.155 | 0.474 | 0.003 | 0.013 | 4196 | 0.348 | 0.820 | 0.900 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.049 | 0.015 | 3917 | 0.137 | 0.001 | 0.012 | 0.058 | 0.014 | 4196 | 0.160 | 0.000 | 0.001 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.043 | 0.012 | 3917 | 0.466 | 0.000 | 0.003 | -0.046 | 0.011 | 4196 | 0.467 | 0.000 | 0.001 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | A_Prenatal_Burden_Score_z | 0.031 | 0.015 | 3917 | 0.148 | 0.041 | 0.199 | 0.006 | 0.015 | 4196 | 0.145 | 0.693 | 0.813 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 3917 | 0.392 | 0.648 | 0.832 | -0.021 | 0.012 | 4196 | 0.411 | 0.082 | 0.193 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.017 | 0.014 | 3917 | 0.337 | 0.207 | 0.521 | 0.040 | 0.013 | 4196 | 0.332 | 0.003 | 0.021 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.021 | 0.014 | 3917 | 0.225 | 0.154 | 0.474 | -0.028 | 0.014 | 4196 | 0.203 | 0.048 | 0.143 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | A_Prenatal_Burden_Score_z | 0.008 | 0.013 | 3917 | 0.353 | 0.545 | 0.757 | 0.002 | 0.013 | 4196 | 0.343 | 0.869 | 0.909 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | A_Prenatal_Burden_Score_z | -0.016 | 0.014 | 3917 | 0.254 | 0.266 | 0.549 | 0.016 | 0.014 | 4196 | 0.251 | 0.249 | 0.424 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | A_Prenatal_Burden_Score_z | -0.025 | 0.013 | 3917 | 0.351 | 0.064 | 0.290 | -0.006 | 0.013 | 4196 | 0.362 | 0.615 | 0.804 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.014 | 0.016 | 3917 | 0.109 | 0.377 | 0.597 | 0.029 | 0.015 | 4196 | 0.104 | 0.057 | 0.150 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | A_Prenatal_Burden_Score_z | -0.013 | 0.013 | 3917 | 0.366 | 0.315 | 0.563 | -0.024 | 0.013 | 4196 | 0.407 | 0.054 | 0.149 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | A_Prenatal_Burden_Score_z | -0.004 | 0.011 | 3917 | 0.542 | 0.711 | 0.862 | 0.020 | 0.011 | 4196 | 0.528 | 0.065 | 0.163 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.005 | 0.016 | 3917 | 0.055 | 0.755 | 0.862 | 0.041 | 0.015 | 4196 | 0.059 | 0.007 | 0.036 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.012 | 0.011 | 3917 | 0.465 | 0.309 | 0.563 | -0.003 | 0.011 | 4196 | 0.445 | 0.768 | 0.885 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.010 | 0.011 | 3917 | 0.493 | 0.331 | 0.563 | -0.001 | 0.010 | 4196 | 0.484 | 0.910 | 0.921 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | A_Prenatal_Burden_Score_z | -0.018 | 0.010 | 3917 | 0.605 | 0.076 | 0.323 | -0.005 | 0.010 | 4196 | 0.578 | 0.630 | 0.808 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.012 | 0.012 | 3917 | 0.486 | 0.292 | 0.563 | 0.034 | 0.011 | 4196 | 0.490 | 0.003 | 0.021 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | A_Prenatal_Burden_Score_z | -0.004 | 0.011 | 3917 | 0.475 | 0.742 | 0.862 | 0.001 | 0.011 | 4196 | 0.491 | 0.921 | 0.921 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.062 | 0.016 | 3917 | 0.103 | 0.000 | 0.002 | 0.047 | 0.015 | 4196 | 0.094 | 0.002 | 0.021 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | A_Prenatal_Burden_Score_z | 0.021 | 0.015 | 3917 | 0.156 | 0.161 | 0.474 | 0.008 | 0.015 | 4196 | 0.164 | 0.607 | 0.804 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | A_Prenatal_Burden_Score_z | -0.015 | 0.014 | 3917 | 0.188 | 0.290 | 0.563 | -0.008 | 0.014 | 4196 | 0.179 | 0.571 | 0.776 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | A_Prenatal_Burden_Score_z | -0.001 | 0.014 | 3917 | 0.178 | 0.952 | 0.967 | -0.020 | 0.014 | 4196 | 0.158 | 0.172 | 0.328 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.040 | 0.014 | 3917 | 0.250 | 0.005 | 0.097 | -0.011 | 0.014 | 4196 | 0.229 | 0.429 | 0.742 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.018 | 0.014 | 3917 | 0.265 | 0.218 | 0.529 | 0.028 | 0.014 | 4196 | 0.228 | 0.049 | 0.256 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | 0.033 | 0.013 | 3917 | 0.417 | 0.009 | 0.097 | -0.005 | 0.013 | 4196 | 0.380 | 0.723 | 0.825 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | A_Prenatal_Burden_Score_z | 0.003 | 0.014 | 3917 | 0.234 | 0.816 | 0.957 | -0.010 | 0.014 | 4196 | 0.190 | 0.468 | 0.757 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | A_Prenatal_Burden_Score_z | -0.015 | 0.016 | 3917 | 0.090 | 0.349 | 0.619 | -0.006 | 0.016 | 4196 | 0.088 | 0.703 | 0.824 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | A_Prenatal_Burden_Score_z | -0.008 | 0.012 | 3917 | 0.480 | 0.524 | 0.775 | -0.006 | 0.012 | 4196 | 0.488 | 0.599 | 0.772 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.029 | 0.013 | 3917 | 0.408 | 0.022 | 0.137 | -0.016 | 0.013 | 4196 | 0.374 | 0.221 | 0.637 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.006 | 0.012 | 3917 | 0.496 | 0.630 | 0.856 | 0.006 | 0.012 | 4196 | 0.484 | 0.584 | 0.772 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.005 | 0.014 | 3917 | 0.318 | 0.708 | 0.875 | 0.008 | 0.013 | 4196 | 0.325 | 0.543 | 0.772 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.020 | 0.013 | 3917 | 0.403 | 0.124 | 0.380 | 0.026 | 0.013 | 4196 | 0.355 | 0.047 | 0.256 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.022 | 0.011 | 3917 | 0.518 | 0.054 | 0.204 | -0.025 | 0.011 | 4196 | 0.543 | 0.016 | 0.182 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | A_Prenatal_Burden_Score_z | -0.021 | 0.014 | 3917 | 0.255 | 0.127 | 0.380 | -0.008 | 0.014 | 4196 | 0.253 | 0.538 | 0.772 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.022 | 0.012 | 3917 | 0.417 | 0.082 | 0.292 | -0.016 | 0.012 | 4196 | 0.461 | 0.173 | 0.561 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | A_Prenatal_Burden_Score_z | -0.022 | 0.011 | 3917 | 0.537 | 0.053 | 0.204 | 0.004 | 0.011 | 4196 | 0.509 | 0.728 | 0.825 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | A_Prenatal_Burden_Score_z | -0.011 | 0.015 | 3917 | 0.202 | 0.438 | 0.693 | 0.003 | 0.014 | 4196 | 0.220 | 0.847 | 0.903 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | A_Prenatal_Burden_Score_z | -0.001 | 0.013 | 3917 | 0.353 | 0.953 | 0.968 | -0.018 | 0.013 | 4196 | 0.320 | 0.170 | 0.561 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | A_Prenatal_Burden_Score_z | -0.013 | 0.014 | 3917 | 0.273 | 0.374 | 0.620 | 0.017 | 0.014 | 4196 | 0.247 | 0.225 | 0.637 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.028 | 0.013 | 3917 | 0.384 | 0.034 | 0.180 | 0.027 | 0.013 | 4196 | 0.405 | 0.029 | 0.201 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.002 | 0.015 | 3917 | 0.226 | 0.894 | 0.968 | -0.003 | 0.014 | 4196 | 0.260 | 0.829 | 0.903 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | A_Prenatal_Burden_Score_z | -0.016 | 0.015 | 3917 | 0.129 | 0.294 | 0.554 | -0.022 | 0.015 | 4196 | 0.143 | 0.135 | 0.541 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | A_Prenatal_Burden_Score_z | 0.002 | 0.011 | 3917 | 0.564 | 0.874 | 0.968 | -0.005 | 0.011 | 4196 | 0.541 | 0.654 | 0.803 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.004 | 0.013 | 3917 | 0.366 | 0.778 | 0.944 | 0.007 | 0.013 | 4196 | 0.333 | 0.610 | 0.772 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | A_Prenatal_Burden_Score_z | 0.007 | 0.011 | 3917 | 0.533 | 0.556 | 0.787 | -0.006 | 0.011 | 4196 | 0.504 | 0.602 | 0.772 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | A_Prenatal_Burden_Score_z | 0.012 | 0.011 | 3917 | 0.533 | 0.293 | 0.554 | -0.001 | 0.011 | 4196 | 0.510 | 0.893 | 0.929 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.013 | 0.013 | 3917 | 0.423 | 0.290 | 0.554 | -0.013 | 0.012 | 4196 | 0.435 | 0.266 | 0.676 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.017 | 0.011 | 3917 | 0.539 | 0.132 | 0.380 | 0.011 | 0.012 | 4196 | 0.486 | 0.345 | 0.690 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.020 | 0.010 | 3917 | 0.626 | 0.052 | 0.204 | 0.009 | 0.010 | 4196 | 0.627 | 0.358 | 0.696 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | A_Prenatal_Burden_Score_z | -0.008 | 0.012 | 3917 | 0.454 | 0.508 | 0.767 | 0.007 | 0.012 | 4196 | 0.441 | 0.577 | 0.772 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.001 | 0.011 | 3917 | 0.540 | 0.952 | 0.968 | -0.005 | 0.011 | 4196 | 0.539 | 0.673 | 0.803 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | A_Prenatal_Burden_Score_z | -0.012 | 0.013 | 3917 | 0.364 | 0.355 | 0.619 | -0.002 | 0.013 | 4196 | 0.373 | 0.905 | 0.929 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | A_Prenatal_Burden_Score_z | 0.010 | 0.014 | 3917 | 0.295 | 0.466 | 0.720 | 0.020 | 0.013 | 4196 | 0.358 | 0.122 | 0.518 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | A_Prenatal_Burden_Score_z | 0.015 | 0.014 | 3917 | 0.247 | 0.292 | 0.554 | 0.029 | 0.014 | 4196 | 0.255 | 0.038 | 0.237 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.034 | 0.014 | 3917 | 0.247 | 0.018 | 0.124 | 0.007 | 0.014 | 4196 | 0.226 | 0.613 | 0.772 |
| smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.045 | 0.012 | 3917 | 0.412 | 0.000 | 0.018 | -0.013 | 0.012 | 4196 | 0.392 | 0.308 | 0.676 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.001 | 0.014 | 3917 | 0.287 | 0.971 | 0.971 | 0.001 | 0.013 | 4196 | 0.307 | 0.918 | 0.929 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.003 | 0.015 | 3917 | 0.236 | 0.853 | 0.968 | 0.012 | 0.014 | 4196 | 0.218 | 0.399 | 0.742 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | 0.012 | 0.013 | 3917 | 0.381 | 0.353 | 0.619 | 0.012 | 0.013 | 4196 | 0.363 | 0.344 | 0.690 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | A_Prenatal_Burden_Score_z | 0.009 | 0.014 | 3917 | 0.269 | 0.537 | 0.777 | 0.014 | 0.014 | 4196 | 0.244 | 0.306 | 0.676 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | A_Prenatal_Burden_Score_z | 0.008 | 0.016 | 3917 | 0.107 | 0.609 | 0.844 | 0.012 | 0.015 | 4196 | 0.098 | 0.448 | 0.742 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | A_Prenatal_Burden_Score_z | 0.005 | 0.012 | 3917 | 0.471 | 0.682 | 0.875 | 0.006 | 0.012 | 4196 | 0.480 | 0.580 | 0.772 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.032 | 0.013 | 3917 | 0.429 | 0.011 | 0.097 | -0.010 | 0.013 | 4196 | 0.397 | 0.428 | 0.742 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.015 | 0.012 | 3917 | 0.519 | 0.184 | 0.482 | 0.012 | 0.011 | 4196 | 0.505 | 0.287 | 0.676 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.027 | 0.014 | 3917 | 0.292 | 0.052 | 0.204 | -0.043 | 0.013 | 4196 | 0.316 | 0.001 | 0.044 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | A_Prenatal_Burden_Score_z | -0.003 | 0.013 | 3917 | 0.392 | 0.802 | 0.957 | 0.031 | 0.013 | 4196 | 0.366 | 0.017 | 0.182 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.033 | 0.011 | 3917 | 0.499 | 0.004 | 0.097 | -0.036 | 0.011 | 4196 | 0.502 | 0.001 | 0.044 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | A_Prenatal_Burden_Score_z | -0.012 | 0.014 | 3917 | 0.250 | 0.383 | 0.620 | -0.013 | 0.014 | 4196 | 0.256 | 0.337 | 0.690 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.015 | 0.012 | 3917 | 0.499 | 0.193 | 0.487 | 0.005 | 0.011 | 4196 | 0.515 | 0.662 | 0.803 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | A_Prenatal_Burden_Score_z | -0.021 | 0.010 | 3917 | 0.606 | 0.044 | 0.204 | -0.013 | 0.010 | 4196 | 0.604 | 0.193 | 0.596 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | A_Prenatal_Burden_Score_z | -0.016 | 0.015 | 3917 | 0.183 | 0.293 | 0.554 | 0.015 | 0.014 | 4196 | 0.236 | 0.277 | 0.676 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | A_Prenatal_Burden_Score_z | 0.002 | 0.014 | 3917 | 0.340 | 0.903 | 0.968 | 0.019 | 0.014 | 4196 | 0.308 | 0.168 | 0.561 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.001 | 0.014 | 3917 | 0.300 | 0.946 | 0.968 | -0.017 | 0.014 | 4196 | 0.265 | 0.234 | 0.638 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.030 | 0.014 | 3917 | 0.325 | 0.026 | 0.149 | 0.013 | 0.013 | 4196 | 0.372 | 0.296 | 0.676 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | A_Prenatal_Burden_Score_z | -0.006 | 0.015 | 3917 | 0.227 | 0.706 | 0.875 | -0.025 | 0.014 | 4196 | 0.233 | 0.076 | 0.369 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | A_Prenatal_Burden_Score_z | -0.017 | 0.015 | 3917 | 0.145 | 0.259 | 0.554 | -0.005 | 0.014 | 4196 | 0.156 | 0.750 | 0.836 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | A_Prenatal_Burden_Score_z | -0.014 | 0.011 | 3917 | 0.522 | 0.234 | 0.549 | -0.025 | 0.011 | 4196 | 0.508 | 0.025 | 0.201 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.012 | 0.013 | 3917 | 0.397 | 0.365 | 0.620 | -0.036 | 0.013 | 4196 | 0.357 | 0.006 | 0.104 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | A_Prenatal_Burden_Score_z | 0.005 | 0.012 | 3917 | 0.474 | 0.688 | 0.875 | 0.027 | 0.012 | 4196 | 0.489 | 0.019 | 0.182 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | A_Prenatal_Burden_Score_z | 0.028 | 0.011 | 3917 | 0.546 | 0.011 | 0.097 | -0.007 | 0.011 | 4196 | 0.546 | 0.525 | 0.772 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.021 | 0.014 | 3917 | 0.343 | 0.117 | 0.380 | -0.011 | 0.013 | 4196 | 0.357 | 0.408 | 0.742 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.030 | 0.012 | 3917 | 0.488 | 0.011 | 0.097 | 0.008 | 0.012 | 4196 | 0.487 | 0.498 | 0.770 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.016 | 0.011 | 3917 | 0.603 | 0.134 | 0.380 | 0.015 | 0.010 | 4196 | 0.601 | 0.148 | 0.559 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | A_Prenatal_Burden_Score_z | 0.018 | 0.012 | 3917 | 0.461 | 0.143 | 0.390 | -0.002 | 0.012 | 4196 | 0.452 | 0.850 | 0.903 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.001 | 0.011 | 3917 | 0.595 | 0.954 | 0.968 | -0.001 | 0.010 | 4196 | 0.598 | 0.929 | 0.929 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 3917 | 0.415 | 0.652 | 0.869 | -0.020 | 0.013 | 4196 | 0.388 | 0.109 | 0.496 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | A_Prenatal_Burden_Score_z | 0.015 | 0.014 | 3917 | 0.274 | 0.282 | 0.554 | 0.029 | 0.013 | 4196 | 0.350 | 0.029 | 0.201 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | A_Prenatal_Burden_Score_z | 0.040 | 0.015 | 3917 | 0.220 | 0.006 | 0.097 | 0.044 | 0.014 | 4196 | 0.231 | 0.002 | 0.044 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | A_Prenatal_Burden_Score_z | -0.002 | 0.013 | 3917 | 0.350 | 0.901 | 0.968 | -0.009 | 0.013 | 4196 | 0.324 | 0.496 | 0.770 |
| smri_area_cdk_insularh | Cortical area rh-insula | A_Prenatal_Burden_Score_z | -0.030 | 0.013 | 3917 | 0.396 | 0.018 | 0.124 | -0.010 | 0.013 | 4196 | 0.361 | 0.440 | 0.742 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.032 | 0.017 | 3917 | 0.006 | 0.058 | 0.189 | -0.023 | 0.016 | 4196 | 0.002 | 0.160 | 0.280 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.012 | 0.017 | 3917 | 0.032 | 0.462 | 0.653 | 0.005 | 0.016 | 4196 | 0.024 | 0.759 | 0.833 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.019 | 0.017 | 3917 | 0.010 | 0.250 | 0.515 | 0.007 | 0.016 | 4196 | 0.008 | 0.670 | 0.747 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | A_Prenatal_Burden_Score_z | 0.013 | 0.016 | 3917 | 0.012 | 0.423 | 0.653 | 0.016 | 0.016 | 4196 | 0.010 | 0.310 | 0.440 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.041 | 0.017 | 3917 | 0.006 | 0.013 | 0.064 | -0.057 | 0.016 | 4196 | 0.007 | 0.000 | 0.003 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.049 | 0.016 | 3917 | 0.042 | 0.003 | 0.031 | 0.062 | 0.016 | 4196 | 0.047 | 0.000 | 0.002 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.013 | 0.017 | 3917 | 0.034 | 0.443 | 0.653 | 0.028 | 0.016 | 4196 | 0.031 | 0.082 | 0.185 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.037 | 0.017 | 3917 | 0.007 | 0.026 | 0.112 | -0.060 | 0.016 | 4196 | 0.004 | 0.000 | 0.003 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.032 | 0.016 | 3917 | 0.006 | 0.052 | 0.176 | 0.038 | 0.016 | 4196 | 0.002 | 0.017 | 0.055 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.026 | 0.017 | 3917 | 0.015 | 0.114 | 0.282 | 0.010 | 0.016 | 4196 | 0.016 | 0.551 | 0.688 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.005 | 0.017 | 3917 | 0.020 | 0.743 | 0.815 | 0.000 | 0.016 | 4196 | 0.017 | 0.998 | 0.998 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.026 | 0.016 | 3917 | 0.001 | 0.116 | 0.282 | 0.047 | 0.016 | 4196 | 0.007 | 0.003 | 0.015 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.041 | 0.016 | 3917 | 0.033 | 0.011 | 0.064 | -0.064 | 0.016 | 4196 | 0.016 | 0.000 | 0.002 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | A_Prenatal_Burden_Score_z | 0.009 | 0.017 | 3917 | 0.011 | 0.574 | 0.710 | 0.030 | 0.016 | 4196 | 0.011 | 0.062 | 0.150 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | A_Prenatal_Burden_Score_z | -0.022 | 0.016 | 3917 | 0.025 | 0.177 | 0.389 | -0.009 | 0.016 | 4196 | 0.042 | 0.557 | 0.688 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | A_Prenatal_Burden_Score_z | 0.012 | 0.017 | 3917 | 0.008 | 0.459 | 0.653 | -0.024 | 0.016 | 4196 | 0.002 | 0.142 | 0.269 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | A_Prenatal_Burden_Score_z | -0.012 | 0.017 | 3917 | 0.006 | 0.488 | 0.664 | -0.021 | 0.016 | 4196 | -0.001 | 0.203 | 0.337 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.010 | 0.016 | 3917 | 0.023 | 0.527 | 0.697 | 0.037 | 0.016 | 4196 | 0.024 | 0.021 | 0.065 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.006 | 0.017 | 3917 | 0.014 | 0.720 | 0.815 | 0.011 | 0.016 | 4196 | 0.017 | 0.507 | 0.664 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | A_Prenatal_Burden_Score_z | -0.016 | 0.016 | 3917 | 0.049 | 0.330 | 0.576 | 0.003 | 0.016 | 4196 | 0.036 | 0.835 | 0.872 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | A_Prenatal_Burden_Score_z | -0.010 | 0.017 | 3917 | 0.018 | 0.537 | 0.697 | 0.000 | 0.016 | 4196 | 0.033 | 0.987 | 0.998 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.041 | 0.016 | 3917 | 0.037 | 0.012 | 0.064 | 0.056 | 0.016 | 4196 | 0.042 | 0.000 | 0.003 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.044 | 0.017 | 3917 | 0.002 | 0.008 | 0.064 | 0.051 | 0.016 | 4196 | 0.007 | 0.002 | 0.011 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | A_Prenatal_Burden_Score_z | 0.001 | 0.017 | 3917 | 0.006 | 0.950 | 0.950 | 0.015 | 0.016 | 4196 | 0.001 | 0.361 | 0.493 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.027 | 0.016 | 3917 | 0.031 | 0.099 | 0.282 | 0.042 | 0.016 | 4196 | 0.015 | 0.009 | 0.032 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.013 | 0.016 | 3917 | 0.034 | 0.427 | 0.653 | 0.030 | 0.016 | 4196 | 0.041 | 0.056 | 0.141 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.005 | 0.016 | 3917 | 0.024 | 0.773 | 0.834 | -0.033 | 0.016 | 4196 | 0.018 | 0.038 | 0.103 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | A_Prenatal_Burden_Score_z | 0.005 | 0.016 | 3917 | 0.022 | 0.743 | 0.815 | -0.015 | 0.016 | 4196 | 0.019 | 0.363 | 0.493 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.015 | 0.016 | 3917 | 0.054 | 0.353 | 0.585 | -0.056 | 0.016 | 4196 | 0.069 | 0.000 | 0.003 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | A_Prenatal_Burden_Score_z | 0.026 | 0.017 | 3917 | 0.002 | 0.121 | 0.284 | -0.003 | 0.016 | 4196 | 0.005 | 0.847 | 0.872 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.086 | 0.016 | 3917 | 0.037 | 0.000 | 0.000 | -0.048 | 0.016 | 4196 | 0.034 | 0.002 | 0.013 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | A_Prenatal_Burden_Score_z | -0.038 | 0.017 | 3917 | 0.027 | 0.022 | 0.098 | -0.023 | 0.016 | 4196 | 0.025 | 0.154 | 0.280 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.014 | 0.017 | 3917 | 0.020 | 0.414 | 0.653 | 0.046 | 0.016 | 4196 | 0.042 | 0.004 | 0.016 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | A_Prenatal_Burden_Score_z | 0.018 | 0.016 | 3917 | 0.041 | 0.279 | 0.558 | 0.004 | 0.016 | 4196 | 0.027 | 0.786 | 0.849 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.017 | 0.017 | 3917 | 0.011 | 0.311 | 0.562 | -0.008 | 0.016 | 4196 | 0.005 | 0.624 | 0.735 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.019 | 0.016 | 3917 | 0.048 | 0.247 | 0.515 | -0.019 | 0.016 | 4196 | 0.040 | 0.225 | 0.356 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.003 | 0.017 | 3917 | 0.003 | 0.880 | 0.909 | 0.025 | 0.016 | 4196 | 0.009 | 0.124 | 0.251 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | A_Prenatal_Burden_Score_z | 0.013 | 0.017 | 3917 | 0.008 | 0.443 | 0.653 | 0.022 | 0.016 | 4196 | 0.005 | 0.171 | 0.290 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.063 | 0.017 | 3917 | 0.004 | 0.000 | 0.003 | -0.042 | 0.016 | 4196 | 0.004 | 0.009 | 0.032 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.056 | 0.016 | 3917 | 0.042 | 0.001 | 0.009 | 0.049 | 0.016 | 4196 | 0.054 | 0.002 | 0.013 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.008 | 0.016 | 3917 | 0.044 | 0.627 | 0.762 | -0.007 | 0.016 | 4196 | 0.037 | 0.659 | 0.747 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.043 | 0.017 | 3917 | 0.006 | 0.010 | 0.064 | -0.062 | 0.016 | 4196 | 0.006 | 0.000 | 0.002 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.017 | 0.017 | 3917 | 0.006 | 0.314 | 0.562 | 0.035 | 0.016 | 4196 | 0.001 | 0.031 | 0.092 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.025 | 0.017 | 3917 | 0.006 | 0.128 | 0.289 | 0.029 | 0.016 | 4196 | 0.007 | 0.076 | 0.179 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.017 | 0.017 | 3917 | 0.032 | 0.299 | 0.562 | 0.019 | 0.016 | 4196 | 0.026 | 0.246 | 0.372 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | A_Prenatal_Burden_Score_z | 0.004 | 0.016 | 3917 | 0.011 | 0.788 | 0.837 | 0.018 | 0.016 | 4196 | 0.008 | 0.258 | 0.381 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.025 | 0.016 | 3917 | 0.062 | 0.115 | 0.282 | -0.024 | 0.016 | 4196 | 0.029 | 0.126 | 0.251 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.015 | 0.016 | 3917 | 0.040 | 0.348 | 0.585 | 0.040 | 0.016 | 4196 | 0.028 | 0.013 | 0.045 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | A_Prenatal_Burden_Score_z | -0.010 | 0.016 | 3917 | 0.025 | 0.543 | 0.697 | -0.004 | 0.016 | 4196 | 0.032 | 0.819 | 0.871 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | A_Prenatal_Burden_Score_z | 0.012 | 0.017 | 3917 | 0.006 | 0.471 | 0.653 | -0.007 | 0.016 | 4196 | 0.001 | 0.662 | 0.747 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.035 | 0.017 | 3917 | 0.004 | 0.038 | 0.143 | -0.023 | 0.016 | 4196 | 0.002 | 0.159 | 0.280 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.035 | 0.017 | 3917 | 0.014 | 0.036 | 0.142 | 0.045 | 0.016 | 4196 | 0.031 | 0.005 | 0.020 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | A_Prenatal_Burden_Score_z | 0.007 | 0.017 | 3917 | 0.018 | 0.660 | 0.785 | 0.008 | 0.016 | 4196 | 0.016 | 0.627 | 0.735 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | A_Prenatal_Burden_Score_z | -0.002 | 0.016 | 3917 | 0.032 | 0.883 | 0.909 | -0.010 | 0.016 | 4196 | 0.020 | 0.530 | 0.679 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | A_Prenatal_Burden_Score_z | -0.001 | 0.017 | 3917 | 0.005 | 0.950 | 0.950 | 0.032 | 0.016 | 4196 | 0.010 | 0.049 | 0.127 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.041 | 0.016 | 3917 | 0.045 | 0.013 | 0.064 | 0.055 | 0.016 | 4196 | 0.044 | 0.000 | 0.003 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | A_Prenatal_Burden_Score_z | 0.043 | 0.017 | 3917 | 0.006 | 0.010 | 0.064 | 0.017 | 0.016 | 4196 | 0.008 | 0.293 | 0.424 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | A_Prenatal_Burden_Score_z | 0.007 | 0.016 | 3917 | 0.001 | 0.670 | 0.785 | 0.008 | 0.016 | 4196 | 0.002 | 0.609 | 0.735 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.046 | 0.017 | 3917 | 0.017 | 0.005 | 0.052 | 0.058 | 0.016 | 4196 | 0.009 | 0.000 | 0.003 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.028 | 0.017 | 3917 | 0.024 | 0.094 | 0.282 | 0.024 | 0.016 | 4196 | 0.029 | 0.137 | 0.267 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.032 | 0.016 | 3917 | 0.032 | 0.050 | 0.176 | -0.047 | 0.016 | 4196 | 0.018 | 0.003 | 0.015 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | A_Prenatal_Burden_Score_z | -0.026 | 0.016 | 3917 | 0.021 | 0.108 | 0.282 | -0.014 | 0.016 | 4196 | 0.020 | 0.375 | 0.500 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.060 | 0.016 | 3917 | 0.062 | 0.000 | 0.004 | -0.074 | 0.016 | 4196 | 0.064 | 0.000 | 0.000 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | A_Prenatal_Burden_Score_z | 0.027 | 0.017 | 3917 | 0.000 | 0.113 | 0.282 | 0.019 | 0.016 | 4196 | 0.002 | 0.246 | 0.372 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.081 | 0.016 | 3917 | 0.035 | 0.000 | 0.000 | -0.034 | 0.016 | 4196 | 0.041 | 0.034 | 0.096 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | A_Prenatal_Burden_Score_z | -0.017 | 0.016 | 3917 | 0.008 | 0.296 | 0.562 | -0.019 | 0.016 | 4196 | 0.016 | 0.225 | 0.356 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | A_Prenatal_Burden_Score_z | 0.010 | 0.017 | 3917 | 0.024 | 0.556 | 0.700 | 0.026 | 0.016 | 4196 | 0.028 | 0.100 | 0.218 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | A_Prenatal_Burden_Score_z | -0.007 | 0.016 | 3917 | 0.042 | 0.687 | 0.792 | -0.025 | 0.016 | 4196 | 0.034 | 0.112 | 0.239 |
write.xlsx(x = cbind(CBCL_results.F[,-c(1,3:4)],CBCL_results.M[,-c(1:5)]),
file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
sheetName = 'eTable3',
row.names = T,
showNA = F,
append = T
)
write.xlsx(x = cbind(Prenatal_results.F[,-c(1,3:4)],Prenatal_results.M[,-c(1:5)]),
file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
sheetName = 'eTable4',
row.names = T,
showNA = F,
append = T
)
Main_results_bySite.F <- rbind(CortVol_SigResults_bySite.F,
CortThickResults_bySite.F,
CortAreaResults_bySite.F,
SulcalDepthResults_bySite.F)
#Saving eTable5
write.xlsx(x = Main_results_bySite.F[complete.cases(Main_results_bySite.F),-c(1,4)],#Omit Main effect ID and Aliases and sites in which glme did not fit
file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
sheetName = 'eTable5',
row.names = F,
showNA = F,
append = T
)
kable(Main_results_bySite.F[complete.cases(Main_results_bySite.F),-c(1,4)],#Omit Main effect ID and Aliases and sites in which glme did not fit
caption = 'eTable5 - Associations between Prenatal Adverse Exposures and Significant Brain Regions in Females by Site',
digits = 3) %>%
kable_styling(position = "center")
| Site | Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | |
|---|---|---|---|---|---|---|---|---|---|
| 1 | site11 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.047 | 0.079 | 169 | 0.165 | 0.552 |
| 2 | site14 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.185 | 0.079 | 193 | 0.096 | 0.021 |
| 3 | site02 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.046 | 0.066 | 203 | 0.113 | 0.491 |
| 4 | site05 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.142 | 0.100 | 130 | 0.256 | 0.157 |
| 6 | site16 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.022 | 0.058 | 377 | 0.176 | 0.712 |
| 8 | site04 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.033 | 0.089 | 156 | 0.088 | 0.711 |
| 9 | site09 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.123 | 0.127 | 142 | 0.074 | 0.335 |
| 10 | site19 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.047 | 0.079 | 184 | 0.250 | 0.557 |
| 11 | site03 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.120 | 0.076 | 161 | 0.277 | 0.116 |
| 12 | site08 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.056 | 0.107 | 104 | 0.256 | 0.605 |
| 13 | site07 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.117 | 0.109 | 101 | 0.325 | 0.283 |
| 14 | site13 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.488 | 0.175 | 54 | 0.424 | 0.009 |
| 15 | site01 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.092 | 0.103 | 124 | 0.258 | 0.374 |
| 16 | site15 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.031 | 0.079 | 132 | 0.243 | 0.698 |
| 18 | site06 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.161 | 0.076 | 219 | 0.148 | 0.035 |
| 19 | site18 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.239 | 0.123 | 114 | 0.147 | 0.054 |
| 20 | site21 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.046 | 0.094 | 166 | 0.106 | 0.624 |
| 21 | site13 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.009 | 0.084 | 169 | 0.224 | 0.915 |
| 22 | site20 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.114 | 0.118 | 88 | 0.376 | 0.337 |
| 23 | site20 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.081 | 0.083 | 183 | 0.149 | 0.329 |
| 24 | site10 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.182 | 0.088 | 165 | 0.181 | 0.040 |
| 25 | site17 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.030 | 0.077 | 216 | 0.157 | 0.695 |
| 26 | site10 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.018 | 0.159 | 49 | 0.221 | 0.910 |
| 27 | site12 | smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.003 | 0.084 | 176 | 0.086 | 0.971 |
| 30 | site11 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.008 | 0.077 | 169 | 0.210 | 0.919 |
| 31 | site14 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.181 | 0.071 | 193 | 0.304 | 0.012 |
| 32 | site02 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.127 | 0.059 | 203 | 0.286 | 0.031 |
| 33 | site05 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.019 | 0.093 | 130 | 0.354 | 0.841 |
| 35 | site16 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.058 | 0.057 | 377 | 0.230 | 0.307 |
| 37 | site04 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.037 | 0.082 | 156 | 0.113 | 0.652 |
| 38 | site09 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.044 | 0.119 | 142 | 0.175 | 0.711 |
| 39 | site19 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.050 | 0.075 | 184 | 0.290 | 0.509 |
| 40 | site03 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.004 | 0.072 | 161 | 0.346 | 0.958 |
| 41 | site08 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.092 | 0.111 | 104 | 0.202 | 0.410 |
| 42 | site07 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.065 | 0.114 | 101 | 0.259 | 0.571 |
| 43 | site13 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.298 | 0.179 | 54 | 0.365 | 0.106 |
| 44 | site01 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.038 | 0.107 | 124 | 0.211 | 0.725 |
| 45 | site15 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.165 | 0.078 | 132 | 0.257 | 0.037 |
| 47 | site06 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.069 | 0.069 | 219 | 0.277 | 0.325 |
| 48 | site18 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.034 | 0.114 | 114 | 0.268 | 0.769 |
| 49 | site21 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.038 | 0.081 | 166 | 0.332 | 0.644 |
| 50 | site13 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.201 | 0.079 | 169 | 0.321 | 0.012 |
| 51 | site20 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.013 | 0.114 | 88 | 0.404 | 0.911 |
| 52 | site20 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.020 | 0.078 | 183 | 0.253 | 0.794 |
| 53 | site10 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.072 | 0.083 | 165 | 0.232 | 0.387 |
| 54 | site17 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.027 | 0.072 | 216 | 0.261 | 0.711 |
| 55 | site10 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.050 | 0.153 | 49 | 0.243 | 0.746 |
| 56 | site12 | smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.101 | 0.070 | 176 | 0.355 | 0.154 |
| 59 | site11 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.110 | 0.070 | 169 | 0.338 | 0.119 |
| 60 | site14 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.013 | 0.075 | 193 | 0.256 | 0.862 |
| 61 | site02 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.141 | 0.060 | 203 | 0.205 | 0.020 |
| 62 | site05 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.022 | 0.088 | 130 | 0.423 | 0.799 |
| 64 | site16 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.032 | 0.054 | 377 | 0.318 | 0.546 |
| 66 | site04 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.011 | 0.078 | 156 | 0.304 | 0.891 |
| 67 | site09 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.136 | 0.109 | 142 | 0.325 | 0.213 |
| 68 | site19 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.003 | 0.076 | 184 | 0.234 | 0.972 |
| 69 | site03 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.033 | 0.075 | 161 | 0.295 | 0.663 |
| 70 | site08 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.271 | 0.090 | 104 | 0.483 | 0.004 |
| 71 | site07 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.099 | 0.105 | 101 | 0.373 | 0.349 |
| 72 | site13 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.049 | 0.223 | 54 | -0.003 | 0.827 |
| 73 | site01 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.121 | 0.105 | 124 | 0.243 | 0.252 |
| 74 | site15 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.070 | 0.068 | 132 | 0.427 | 0.306 |
| 76 | site06 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.080 | 0.064 | 219 | 0.387 | 0.214 |
| 77 | site18 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.244 | 0.117 | 114 | 0.230 | 0.040 |
| 78 | site21 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.066 | 0.082 | 166 | 0.331 | 0.417 |
| 79 | site13 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.080 | 0.077 | 169 | 0.346 | 0.302 |
| 80 | site20 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.054 | 0.147 | 88 | 0.018 | 0.716 |
| 81 | site20 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.188 | 0.070 | 183 | 0.389 | 0.008 |
| 82 | site10 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.183 | 0.074 | 165 | 0.420 | 0.014 |
| 83 | site17 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.113 | 0.062 | 216 | 0.454 | 0.070 |
| 84 | site10 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.250 | 0.178 | 49 | 0.023 | 0.173 |
| 85 | site12 | smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.023 | 0.074 | 176 | 0.293 | 0.750 |
| 88 | site11 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | 0.032 | 0.068 | 169 | 0.376 | 0.637 |
| 89 | site14 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.084 | 0.066 | 193 | 0.337 | 0.204 |
| 90 | site02 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.091 | 0.052 | 203 | 0.333 | 0.078 |
| 91 | site05 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.094 | 130 | 0.320 | 0.610 |
| 93 | site16 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | 0.054 | 0.052 | 377 | 0.355 | 0.296 |
| 95 | site04 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.079 | 0.078 | 156 | 0.255 | 0.314 |
| 96 | site09 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | 0.060 | 0.098 | 142 | 0.426 | 0.541 |
| 97 | site19 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.146 | 0.065 | 184 | 0.403 | 0.025 |
| 98 | site03 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | 0.009 | 0.067 | 161 | 0.426 | 0.897 |
| 99 | site08 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.052 | 0.097 | 104 | 0.397 | 0.594 |
| 100 | site07 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.207 | 0.101 | 101 | 0.422 | 0.043 |
| 101 | site13 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.312 | 0.229 | 54 | -0.018 | 0.183 |
| 102 | site01 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.155 | 0.096 | 124 | 0.366 | 0.110 |
| 103 | site15 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.034 | 0.069 | 132 | 0.421 | 0.617 |
| 105 | site06 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.043 | 0.064 | 219 | 0.376 | 0.507 |
| 106 | site18 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | 0.068 | 0.105 | 114 | 0.328 | 0.520 |
| 107 | site21 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.022 | 0.078 | 166 | 0.384 | 0.782 |
| 108 | site13 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.238 | 0.075 | 169 | 0.387 | 0.002 |
| 109 | site20 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.086 | 0.102 | 88 | 0.536 | 0.398 |
| 110 | site20 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.062 | 0.062 | 183 | 0.519 | 0.323 |
| 111 | site10 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.056 | 0.078 | 165 | 0.348 | 0.476 |
| 112 | site17 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | 0.105 | 0.070 | 216 | 0.308 | 0.136 |
| 113 | site10 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.103 | 0.156 | 49 | 0.248 | 0.516 |
| 114 | site12 | smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.090 | 0.067 | 176 | 0.396 | 0.184 |
| 117 | site11 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.018 | 0.063 | 169 | 0.457 | 0.775 |
| 118 | site14 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.012 | 0.062 | 193 | 0.456 | 0.851 |
| 119 | site02 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.068 | 0.055 | 203 | 0.274 | 0.214 |
| 120 | site05 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.105 | 0.097 | 130 | 0.311 | 0.281 |
| 122 | site16 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.021 | 0.051 | 377 | 0.375 | 0.675 |
| 124 | site04 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | 0.005 | 0.079 | 156 | 0.295 | 0.954 |
| 125 | site09 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.088 | 0.108 | 142 | 0.316 | 0.417 |
| 126 | site19 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.073 | 0.071 | 184 | 0.227 | 0.306 |
| 127 | site03 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.102 | 0.069 | 161 | 0.373 | 0.141 |
| 128 | site08 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.005 | 0.104 | 104 | 0.301 | 0.958 |
| 129 | site07 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.041 | 0.092 | 101 | 0.523 | 0.656 |
| 130 | site13 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.149 | 0.172 | 54 | 0.421 | 0.396 |
| 131 | site01 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.159 | 0.102 | 124 | 0.282 | 0.122 |
| 132 | site15 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.043 | 0.074 | 132 | 0.350 | 0.556 |
| 134 | site06 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.092 | 0.062 | 219 | 0.410 | 0.135 |
| 135 | site18 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.044 | 0.101 | 114 | 0.290 | 0.662 |
| 136 | site21 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.099 | 0.073 | 166 | 0.462 | 0.178 |
| 137 | site13 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.153 | 0.084 | 169 | 0.233 | 0.070 |
| 138 | site20 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.057 | 0.121 | 88 | 0.313 | 0.641 |
| 139 | site20 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.133 | 0.067 | 183 | 0.434 | 0.048 |
| 140 | site10 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | 0.022 | 0.078 | 165 | 0.330 | 0.779 |
| 141 | site17 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.055 | 0.069 | 216 | 0.312 | 0.431 |
| 142 | site10 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.142 | 0.128 | 49 | 0.497 | 0.278 |
| 143 | site12 | smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.066 | 0.068 | 176 | 0.401 | 0.330 |
| 146 | site11 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.037 | 0.062 | 169 | 0.489 | 0.556 |
| 147 | site14 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.135 | 0.068 | 193 | 0.282 | 0.049 |
| 148 | site02 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.065 | 0.054 | 203 | 0.342 | 0.235 |
| 149 | site05 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.073 | 0.088 | 130 | 0.422 | 0.413 |
| 151 | site16 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.015 | 0.051 | 377 | 0.390 | 0.761 |
| 153 | site04 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.027 | 0.077 | 156 | 0.274 | 0.729 |
| 154 | site09 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.011 | 0.098 | 142 | 0.420 | 0.908 |
| 155 | site19 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.133 | 0.060 | 184 | 0.548 | 0.026 |
| 156 | site03 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.074 | 0.063 | 161 | 0.490 | 0.241 |
| 157 | site08 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.006 | 0.104 | 104 | 0.285 | 0.951 |
| 158 | site07 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.045 | 0.080 | 101 | 0.631 | 0.577 |
| 159 | site13 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.297 | 0.170 | 54 | 0.392 | 0.092 |
| 160 | site01 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.016 | 0.082 | 124 | 0.539 | 0.848 |
| 161 | site15 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.042 | 0.060 | 132 | 0.561 | 0.486 |
| 163 | site06 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.052 | 0.062 | 219 | 0.427 | 0.404 |
| 164 | site18 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.034 | 0.104 | 114 | 0.387 | 0.745 |
| 165 | site21 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.008 | 0.076 | 166 | 0.410 | 0.917 |
| 166 | site13 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.201 | 0.064 | 169 | 0.559 | 0.002 |
| 167 | site20 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.094 | 0.103 | 88 | 0.450 | 0.366 |
| 168 | site20 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.065 | 0.060 | 183 | 0.527 | 0.285 |
| 169 | site10 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.064 | 0.074 | 165 | 0.414 | 0.391 |
| 170 | site17 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.036 | 0.067 | 216 | 0.351 | 0.598 |
| 171 | site10 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.200 | 0.154 | 49 | 0.161 | 0.207 |
| 172 | site12 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.097 | 0.058 | 176 | 0.549 | 0.095 |
| 175 | site11 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | 0.007 | 0.068 | 169 | 0.324 | 0.924 |
| 176 | site14 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.037 | 0.062 | 193 | 0.375 | 0.549 |
| 177 | site02 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | 0.005 | 0.060 | 203 | 0.233 | 0.931 |
| 178 | site05 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.088 | 0.097 | 130 | 0.305 | 0.364 |
| 180 | site16 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | 0.008 | 0.052 | 377 | 0.366 | 0.871 |
| 182 | site04 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | 0.064 | 0.079 | 156 | 0.260 | 0.422 |
| 183 | site09 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.103 | 0.111 | 142 | 0.292 | 0.357 |
| 184 | site19 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.091 | 0.071 | 184 | 0.271 | 0.202 |
| 185 | site03 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.049 | 0.078 | 161 | 0.236 | 0.533 |
| 186 | site08 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.035 | 0.102 | 104 | 0.338 | 0.734 |
| 187 | site07 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.019 | 0.088 | 101 | 0.562 | 0.831 |
| 188 | site13 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.116 | 0.166 | 54 | 0.467 | 0.487 |
| 189 | site01 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.234 | 0.101 | 124 | 0.297 | 0.023 |
| 190 | site15 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.043 | 0.073 | 132 | 0.364 | 0.551 |
| 192 | site06 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | 0.011 | 0.065 | 219 | 0.372 | 0.861 |
| 193 | site18 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | 0.037 | 0.092 | 114 | 0.319 | 0.684 |
| 194 | site21 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.040 | 0.075 | 166 | 0.419 | 0.593 |
| 195 | site13 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.114 | 0.077 | 169 | 0.333 | 0.143 |
| 196 | site20 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | 0.020 | 0.130 | 88 | 0.222 | 0.878 |
| 197 | site20 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.119 | 0.069 | 183 | 0.381 | 0.086 |
| 198 | site10 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | 0.018 | 0.076 | 165 | 0.262 | 0.809 |
| 199 | site17 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.032 | 0.069 | 216 | 0.311 | 0.645 |
| 200 | site10 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.074 | 0.127 | 49 | 0.504 | 0.567 |
| 201 | site12 | smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.080 | 0.071 | 176 | 0.340 | 0.262 |
| 17 | site11 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.129 | 0.071 | 169 | 0.321 | 0.072 |
| 28 | site14 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.048 | 0.075 | 193 | 0.298 | 0.521 |
| 34 | site02 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.010 | 0.062 | 203 | 0.226 | 0.877 |
| 46 | site05 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.087 | 0.096 | 130 | 0.325 | 0.365 |
| 63 | site16 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.017 | 0.055 | 377 | 0.287 | 0.757 |
| 86 | site04 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.147 | 0.084 | 156 | 0.185 | 0.084 |
| 92 | site09 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.010 | 0.113 | 142 | 0.268 | 0.931 |
| 104 | site19 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.061 | 0.081 | 184 | 0.228 | 0.451 |
| 115 | site03 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.045 | 0.075 | 161 | 0.310 | 0.549 |
| 121 | site08 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.017 | 0.102 | 104 | 0.326 | 0.871 |
| 133 | site07 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.164 | 0.124 | 101 | 0.127 | 0.190 |
| 144 | site13 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.250 | 0.212 | 54 | 0.159 | 0.249 |
| 152 | site01 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.178 | 0.100 | 124 | 0.308 | 0.079 |
| 162 | site15 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.014 | 0.071 | 132 | 0.393 | 0.845 |
| 181 | site06 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.211 | 0.070 | 219 | 0.275 | 0.003 |
| 191 | site18 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.071 | 0.105 | 114 | 0.168 | 0.500 |
| 202 | site21 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.010 | 0.085 | 166 | 0.261 | 0.905 |
| 2110 | site13 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.018 | 0.084 | 169 | 0.224 | 0.832 |
| 2210 | site20 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.121 | 0.135 | 88 | 0.196 | 0.375 |
| 231 | site20 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.023 | 0.080 | 183 | 0.211 | 0.778 |
| 249 | site10 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.211 | 0.084 | 165 | 0.242 | 0.013 |
| 2510 | site17 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.035 | 0.073 | 216 | 0.244 | 0.629 |
| 261 | site10 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.012 | 0.140 | 49 | 0.428 | 0.932 |
| 278 | site12 | smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.039 | 0.071 | 176 | 0.345 | 0.581 |
| 307 | site11 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.081 | 0.071 | 169 | 0.326 | 0.255 |
| 318 | site14 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.019 | 0.067 | 193 | 0.421 | 0.773 |
| 321 | site02 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.037 | 0.053 | 203 | 0.446 | 0.481 |
| 331 | site05 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.001 | 0.089 | 130 | 0.389 | 0.991 |
| 351 | site16 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.101 | 0.048 | 377 | 0.440 | 0.038 |
| 371 | site04 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.003 | 0.080 | 156 | 0.281 | 0.975 |
| 381 | site09 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.001 | 0.103 | 142 | 0.352 | 0.993 |
| 391 | site19 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.135 | 0.072 | 184 | 0.310 | 0.062 |
| 401 | site03 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.054 | 0.078 | 161 | 0.250 | 0.492 |
| 411 | site08 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.019 | 0.103 | 104 | 0.323 | 0.852 |
| 421 | site07 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.154 | 0.110 | 101 | 0.310 | 0.166 |
| 431 | site13 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.087 | 0.208 | 54 | 0.203 | 0.680 |
| 441 | site01 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.267 | 0.097 | 124 | 0.343 | 0.007 |
| 451 | site15 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.129 | 0.075 | 132 | 0.309 | 0.089 |
| 471 | site06 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.034 | 0.063 | 219 | 0.407 | 0.587 |
| 481 | site18 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.413 | 0.103 | 114 | 0.368 | 0.000 |
| 491 | site21 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.075 | 0.080 | 166 | 0.344 | 0.349 |
| 501 | site13 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.073 | 0.083 | 169 | 0.239 | 0.379 |
| 511 | site20 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.088 | 0.106 | 88 | 0.480 | 0.409 |
| 521 | site20 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.084 | 0.064 | 183 | 0.483 | 0.193 |
| 531 | site10 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.117 | 0.085 | 165 | 0.228 | 0.171 |
| 541 | site17 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.081 | 0.075 | 216 | 0.191 | 0.283 |
| 551 | site10 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.003 | 0.168 | 49 | 0.182 | 0.988 |
| 561 | site12 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.054 | 0.068 | 176 | 0.389 | 0.434 |
| 591 | site11 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.017 | 0.082 | 169 | 0.112 | 0.831 |
| 601 | site14 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.087 | 0.082 | 193 | 0.157 | 0.291 |
| 611 | site02 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.040 | 0.065 | 203 | 0.131 | 0.541 |
| 621 | site05 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.057 | 0.103 | 130 | 0.223 | 0.581 |
| 641 | site16 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.020 | 0.058 | 377 | 0.193 | 0.736 |
| 661 | site04 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.157 | 0.086 | 156 | 0.158 | 0.070 |
| 671 | site09 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.042 | 0.121 | 142 | 0.140 | 0.726 |
| 681 | site19 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.011 | 0.081 | 184 | 0.208 | 0.892 |
| 691 | site03 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.006 | 0.084 | 161 | 0.135 | 0.944 |
| 701 | site08 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.065 | 0.110 | 104 | 0.209 | 0.557 |
| 711 | site07 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.228 | 0.123 | 101 | 0.144 | 0.068 |
| 721 | site13 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.192 | 0.200 | 54 | 0.223 | 0.343 |
| 731 | site01 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.036 | 0.113 | 124 | 0.121 | 0.751 |
| 741 | site15 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.043 | 0.088 | 132 | 0.083 | 0.626 |
| 761 | site06 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.010 | 0.079 | 219 | 0.082 | 0.896 |
| 771 | site18 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.193 | 0.121 | 114 | 0.170 | 0.113 |
| 781 | site21 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.065 | 0.097 | 166 | 0.028 | 0.502 |
| 791 | site13 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.053 | 0.086 | 169 | 0.179 | 0.541 |
| 801 | site20 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.103 | 0.135 | 88 | 0.193 | 0.449 |
| 811 | site20 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.116 | 0.082 | 183 | 0.158 | 0.158 |
| 821 | site10 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.145 | 0.091 | 165 | 0.095 | 0.116 |
| 831 | site17 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.130 | 0.077 | 216 | 0.148 | 0.095 |
| 841 | site10 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.020 | 0.171 | 49 | 0.086 | 0.907 |
| 851 | site12 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.006 | 0.080 | 176 | 0.162 | 0.938 |
| 881 | site11 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.145 | 0.071 | 169 | 0.323 | 0.044 |
| 891 | site14 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.128 | 0.067 | 193 | 0.429 | 0.060 |
| 901 | site02 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.062 | 0.055 | 203 | 0.383 | 0.258 |
| 911 | site05 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.212 | 0.086 | 130 | 0.451 | 0.016 |
| 931 | site16 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.004 | 0.051 | 377 | 0.366 | 0.939 |
| 951 | site04 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.146 | 0.068 | 156 | 0.475 | 0.034 |
| 961 | site09 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.062 | 0.102 | 142 | 0.378 | 0.546 |
| 971 | site19 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.073 | 0.067 | 184 | 0.469 | 0.278 |
| 981 | site03 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.018 | 0.066 | 161 | 0.472 | 0.786 |
| 991 | site08 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.034 | 0.092 | 104 | 0.438 | 0.717 |
| 1001 | site07 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.275 | 0.091 | 101 | 0.526 | 0.004 |
| 1011 | site13 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.309 | 0.208 | 54 | 0.212 | 0.148 |
| 1021 | site01 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.133 | 0.096 | 124 | 0.371 | 0.167 |
| 1031 | site15 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.056 | 0.067 | 132 | 0.449 | 0.407 |
| 1051 | site06 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.108 | 0.063 | 219 | 0.397 | 0.090 |
| 1061 | site18 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.008 | 0.099 | 114 | 0.371 | 0.938 |
| 1071 | site21 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.032 | 0.078 | 166 | 0.375 | 0.677 |
| 1081 | site13 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.070 | 0.069 | 169 | 0.471 | 0.312 |
| 1091 | site20 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.033 | 0.138 | 88 | 0.164 | 0.811 |
| 1101 | site20 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.086 | 0.066 | 183 | 0.458 | 0.196 |
| 1111 | site10 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.069 | 0.077 | 165 | 0.373 | 0.374 |
| 1121 | site17 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.124 | 0.066 | 216 | 0.369 | 0.063 |
| 1131 | site10 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.132 | 0.146 | 49 | 0.303 | 0.377 |
| 1141 | site12 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.084 | 0.067 | 176 | 0.415 | 0.212 |
| 1171 | site11 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.191 | 0.077 | 169 | 0.210 | 0.014 |
| 1181 | site14 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.045 | 0.084 | 193 | 0.066 | 0.589 |
| 1191 | site02 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.047 | 0.066 | 203 | 0.083 | 0.479 |
| 1201 | site05 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | -0.203 | 0.108 | 130 | 0.052 | 0.062 |
| 1221 | site16 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.062 | 0.062 | 377 | 0.076 | 0.321 |
| 1241 | site04 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | -0.032 | 0.091 | 156 | 0.069 | 0.726 |
| 1251 | site09 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.124 | 0.123 | 142 | 0.117 | 0.315 |
| 1261 | site19 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.089 | 0.086 | 184 | 0.124 | 0.300 |
| 1271 | site03 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.079 | 0.086 | 161 | 0.075 | 0.362 |
| 1281 | site08 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | -0.038 | 0.121 | 104 | 0.059 | 0.754 |
| 1291 | site07 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.023 | 0.122 | 101 | 0.151 | 0.851 |
| 1301 | site13 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | -0.057 | 0.229 | 54 | -0.098 | 0.804 |
| 1311 | site01 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.070 | 0.095 | 124 | 0.385 | 0.464 |
| 1321 | site15 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.086 | 0.086 | 132 | 0.104 | 0.321 |
| 1341 | site06 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.063 | 0.074 | 219 | 0.141 | 0.394 |
| 1351 | site18 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.106 | 0.127 | 114 | 0.068 | 0.406 |
| 1361 | site21 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.096 | 0.094 | 166 | 0.072 | 0.310 |
| 1371 | site13 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.046 | 0.089 | 169 | 0.107 | 0.611 |
| 1381 | site20 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.007 | 0.123 | 88 | 0.261 | 0.952 |
| 1391 | site20 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.005 | 0.081 | 183 | 0.177 | 0.953 |
| 1401 | site10 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.065 | 0.099 | 165 | -0.050 | 0.510 |
| 1411 | site17 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.063 | 0.083 | 216 | 0.036 | 0.445 |
| 1421 | site10 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.256 | 0.190 | 49 | -0.089 | 0.190 |
| 1431 | site12 | smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.203 | 0.077 | 176 | 0.213 | 0.009 |
| 1461 | site11 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.040 | 0.082 | 169 | 0.116 | 0.621 |
| 1471 | site14 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.095 | 0.080 | 193 | 0.175 | 0.235 |
| 1481 | site02 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.151 | 0.064 | 203 | 0.195 | 0.019 |
| 1491 | site05 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | -0.073 | 0.114 | 130 | 0.041 | 0.521 |
| 1511 | site16 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.076 | 0.061 | 377 | 0.126 | 0.213 |
| 1531 | site04 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | -0.006 | 0.083 | 156 | 0.141 | 0.944 |
| 1541 | site09 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.273 | 0.129 | 142 | 0.041 | 0.037 |
| 1551 | site19 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.014 | 0.086 | 184 | 0.119 | 0.874 |
| 1561 | site03 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.080 | 0.079 | 161 | 0.222 | 0.316 |
| 1571 | site08 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.056 | 0.120 | 104 | 0.068 | 0.642 |
| 1581 | site07 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.086 | 0.141 | 101 | -0.120 | 0.543 |
| 1591 | site13 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.209 | 0.196 | 54 | 0.280 | 0.296 |
| 1601 | site01 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.155 | 0.117 | 124 | 0.052 | 0.189 |
| 1611 | site15 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.063 | 0.088 | 132 | 0.061 | 0.477 |
| 1631 | site06 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.043 | 0.075 | 219 | 0.170 | 0.569 |
| 1641 | site18 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.037 | 0.126 | 114 | 0.091 | 0.768 |
| 1651 | site21 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.144 | 0.088 | 166 | 0.190 | 0.105 |
| 1661 | site13 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.040 | 0.092 | 169 | 0.051 | 0.667 |
| 1671 | site20 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | -0.124 | 0.129 | 88 | 0.268 | 0.339 |
| 1681 | site20 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.142 | 0.078 | 183 | 0.246 | 0.071 |
| 1691 | site10 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | -0.014 | 0.084 | 165 | 0.231 | 0.869 |
| 1701 | site17 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.087 | 0.080 | 216 | 0.095 | 0.273 |
| 1711 | site10 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.015 | 0.162 | 49 | 0.231 | 0.929 |
| 1721 | site12 | smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.172 | 0.080 | 176 | 0.161 | 0.033 |
| 1751 | site11 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.001 | 0.073 | 169 | 0.261 | 0.990 |
| 1761 | site14 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.035 | 0.068 | 193 | 0.284 | 0.609 |
| 1771 | site02 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.036 | 0.062 | 203 | 0.240 | 0.561 |
| 1781 | site05 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.125 | 0.097 | 130 | 0.288 | 0.201 |
| 1801 | site16 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.064 | 0.056 | 377 | 0.239 | 0.258 |
| 1821 | site04 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.044 | 0.085 | 156 | 0.151 | 0.606 |
| 1831 | site09 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.034 | 0.115 | 142 | 0.205 | 0.770 |
| 1841 | site19 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.035 | 0.075 | 184 | 0.327 | 0.640 |
| 1851 | site03 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.143 | 0.079 | 161 | 0.210 | 0.073 |
| 1861 | site08 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.115 | 0.111 | 104 | 0.210 | 0.304 |
| 1871 | site07 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.171 | 0.119 | 101 | 0.195 | 0.156 |
| 1881 | site13 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.051 | 0.202 | 54 | 0.241 | 0.804 |
| 1891 | site01 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.239 | 0.099 | 124 | 0.323 | 0.018 |
| 1901 | site15 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.012 | 0.070 | 132 | 0.346 | 0.862 |
| 1921 | site06 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.159 | 0.067 | 219 | 0.289 | 0.019 |
| 1931 | site18 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.005 | 0.100 | 114 | 0.198 | 0.960 |
| 1941 | site21 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.069 | 0.082 | 166 | 0.299 | 0.400 |
| 1951 | site13 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.080 | 0.080 | 169 | 0.287 | 0.322 |
| 1961 | site20 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.291 | 0.118 | 88 | 0.394 | 0.016 |
| 1971 | site20 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.013 | 0.072 | 183 | 0.324 | 0.862 |
| 1981 | site10 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.049 | 0.086 | 165 | 0.215 | 0.569 |
| 1991 | site17 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.016 | 0.069 | 216 | 0.318 | 0.814 |
| 2001 | site10 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.050 | 0.153 | 49 | 0.314 | 0.747 |
| 2011 | site12 | smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.049 | 0.072 | 176 | 0.316 | 0.496 |
| 204 | site11 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.005 | 0.074 | 169 | 0.274 | 0.950 |
| 205 | site14 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.087 | 0.072 | 193 | 0.345 | 0.225 |
| 206 | site02 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.113 | 0.052 | 203 | 0.452 | 0.030 |
| 207 | site05 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.114 | 0.098 | 130 | 0.285 | 0.249 |
| 209 | site16 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.039 | 0.053 | 377 | 0.342 | 0.463 |
| 211 | site04 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.001 | 0.082 | 156 | 0.229 | 0.988 |
| 212 | site09 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.096 | 0.105 | 142 | 0.369 | 0.361 |
| 213 | site19 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.031 | 0.072 | 184 | 0.379 | 0.668 |
| 214 | site03 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.093 | 0.079 | 161 | 0.212 | 0.239 |
| 215 | site08 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.103 | 0.115 | 104 | 0.138 | 0.374 |
| 216 | site07 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.057 | 0.114 | 101 | 0.258 | 0.622 |
| 217 | site13 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.266 | 0.230 | 54 | -0.006 | 0.257 |
| 218 | site01 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.078 | 0.094 | 124 | 0.391 | 0.409 |
| 219 | site15 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.026 | 0.069 | 132 | 0.411 | 0.706 |
| 221 | site06 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.033 | 0.068 | 219 | 0.301 | 0.635 |
| 222 | site18 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.330 | 0.114 | 114 | 0.261 | 0.005 |
| 223 | site21 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.083 | 0.083 | 166 | 0.261 | 0.318 |
| 224 | site13 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.098 | 0.080 | 169 | 0.283 | 0.225 |
| 225 | site20 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.153 | 0.129 | 88 | 0.262 | 0.243 |
| 226 | site20 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.103 | 0.076 | 183 | 0.279 | 0.175 |
| 227 | site10 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.023 | 0.082 | 165 | 0.287 | 0.781 |
| 228 | site17 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.025 | 0.072 | 216 | 0.251 | 0.733 |
| 229 | site10 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.007 | 0.193 | 49 | -0.137 | 0.973 |
| 230 | site12 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.065 | 0.071 | 176 | 0.348 | 0.361 |
| 233 | site11 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.069 | 0.081 | 169 | 0.138 | 0.391 |
| 234 | site14 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.172 | 0.077 | 193 | 0.199 | 0.027 |
| 235 | site02 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.061 | 0.060 | 203 | 0.214 | 0.311 |
| 236 | site05 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.005 | 0.107 | 130 | 0.169 | 0.964 |
| 238 | site16 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.028 | 0.058 | 377 | 0.202 | 0.632 |
| 240 | site04 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.007 | 0.084 | 156 | 0.079 | 0.934 |
| 241 | site09 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.037 | 0.121 | 142 | 0.168 | 0.759 |
| 242 | site19 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.052 | 0.075 | 184 | 0.308 | 0.490 |
| 243 | site03 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.051 | 0.084 | 161 | 0.130 | 0.544 |
| 244 | site08 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.001 | 0.113 | 104 | 0.179 | 0.992 |
| 245 | site07 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.068 | 0.124 | 101 | 0.130 | 0.583 |
| 246 | site13 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.058 | 0.262 | 54 | -0.265 | 0.828 |
| 247 | site01 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.218 | 0.105 | 124 | 0.248 | 0.039 |
| 248 | site15 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.073 | 0.081 | 132 | 0.203 | 0.367 |
| 250 | site06 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.020 | 0.073 | 219 | 0.216 | 0.779 |
| 251 | site18 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.343 | 0.099 | 114 | 0.203 | 0.001 |
| 252 | site21 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.003 | 0.093 | 166 | 0.118 | 0.971 |
| 253 | site13 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.107 | 0.081 | 169 | 0.281 | 0.185 |
| 254 | site20 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.170 | 0.120 | 88 | 0.375 | 0.163 |
| 255 | site20 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.001 | 0.078 | 183 | 0.245 | 0.986 |
| 256 | site10 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.010 | 0.090 | 165 | 0.114 | 0.910 |
| 257 | site17 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.048 | 0.078 | 216 | 0.130 | 0.539 |
| 258 | site10 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.261 | 0.161 | 49 | 0.249 | 0.117 |
| 259 | site12 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.023 | 0.082 | 176 | 0.113 | 0.777 |
| 262 | site11 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.074 | 0.056 | 169 | 0.586 | 0.187 |
| 263 | site14 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.163 | 0.069 | 193 | 0.395 | 0.019 |
| 264 | site02 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.005 | 0.050 | 203 | 0.508 | 0.914 |
| 265 | site05 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.026 | 0.075 | 130 | 0.589 | 0.731 |
| 267 | site16 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.072 | 0.047 | 377 | 0.486 | 0.123 |
| 269 | site04 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.118 | 0.057 | 156 | 0.482 | 0.041 |
| 270 | site09 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.047 | 0.092 | 142 | 0.511 | 0.613 |
| 271 | site19 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.118 | 0.067 | 184 | 0.462 | 0.080 |
| 272 | site03 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.131 | 0.062 | 161 | 0.532 | 0.036 |
| 273 | site08 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.082 | 0.087 | 104 | 0.513 | 0.349 |
| 274 | site07 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.146 | 0.101 | 101 | 0.429 | 0.153 |
| 275 | site13 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.421 | 0.181 | 54 | 0.388 | 0.027 |
| 276 | site01 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.001 | 0.084 | 124 | 0.516 | 0.988 |
| 277 | site15 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.022 | 0.057 | 132 | 0.608 | 0.703 |
| 279 | site06 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.091 | 0.056 | 219 | 0.532 | 0.106 |
| 280 | site18 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.022 | 0.121 | 114 | 0.164 | 0.855 |
| 281 | site21 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.084 | 0.073 | 166 | 0.455 | 0.252 |
| 282 | site13 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.082 | 0.075 | 169 | 0.380 | 0.276 |
| 283 | site20 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.050 | 0.118 | 88 | 0.352 | 0.671 |
| 284 | site20 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.044 | 0.059 | 183 | 0.562 | 0.462 |
| 285 | site10 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.076 | 0.083 | 165 | 0.275 | 0.363 |
| 286 | site17 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.033 | 0.062 | 216 | 0.450 | 0.600 |
| 287 | site10 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.098 | 0.148 | 49 | 0.365 | 0.511 |
| 288 | site12 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.273 | 0.057 | 176 | 0.576 | 0.000 |
| 291 | site11 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.161 | 0.083 | 169 | 0.061 | 0.054 |
| 292 | site14 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.047 | 0.082 | 193 | 0.140 | 0.568 |
| 293 | site02 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.077 | 0.064 | 203 | 0.194 | 0.230 |
| 294 | site05 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.034 | 0.110 | 130 | 0.112 | 0.756 |
| 296 | site16 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.036 | 0.060 | 377 | 0.135 | 0.551 |
| 298 | site04 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.244 | 0.089 | 156 | 0.098 | 0.007 |
| 299 | site09 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.006 | 0.127 | 142 | 0.071 | 0.962 |
| 300 | site19 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.031 | 0.080 | 184 | 0.129 | 0.694 |
| 301 | site03 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.097 | 0.088 | 161 | 0.029 | 0.272 |
| 302 | site08 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.063 | 0.125 | 104 | -0.008 | 0.615 |
| 303 | site07 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.107 | 0.111 | 101 | 0.300 | 0.338 |
| 304 | site13 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.050 | 0.229 | 54 | -0.017 | 0.830 |
| 305 | site01 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.083 | 0.105 | 124 | 0.196 | 0.428 |
| 306 | site15 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.144 | 0.090 | 132 | 0.037 | 0.112 |
| 308 | site06 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.078 | 0.078 | 219 | 0.107 | 0.313 |
| 309 | site18 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.271 | 0.111 | 114 | 0.245 | 0.017 |
| 310 | site21 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.001 | 0.091 | 166 | 0.133 | 0.987 |
| 311 | site13 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.002 | 0.090 | 169 | 0.101 | 0.979 |
| 312 | site20 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.052 | 0.138 | 88 | 0.159 | 0.708 |
| 313 | site20 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.037 | 0.081 | 183 | 0.162 | 0.649 |
| 314 | site10 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.101 | 0.086 | 165 | 0.207 | 0.245 |
| 315 | site17 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.006 | 0.079 | 216 | 0.104 | 0.938 |
| 316 | site10 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.127 | 0.180 | 49 | 0.061 | 0.487 |
| 317 | site12 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.222 | 0.079 | 176 | 0.177 | 0.006 |
| 116 | site11 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.063 | 0.062 | 169 | 0.485 | 0.312 |
| 29 | site14 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | 0.004 | 0.059 | 193 | 0.525 | 0.948 |
| 36 | site02 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.063 | 0.050 | 203 | 0.469 | 0.212 |
| 410 | site05 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.110 | 0.089 | 130 | 0.418 | 0.218 |
| 65 | site16 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.051 | 0.049 | 377 | 0.434 | 0.298 |
| 87 | site04 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | 0.061 | 0.071 | 156 | 0.295 | 0.389 |
| 94 | site09 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | 0.035 | 0.097 | 142 | 0.468 | 0.719 |
| 1010 | site19 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.021 | 0.063 | 184 | 0.421 | 0.742 |
| 1110 | site03 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.082 | 0.060 | 161 | 0.532 | 0.173 |
| 123 | site08 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.039 | 0.097 | 104 | 0.392 | 0.684 |
| 1310 | site07 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | 0.041 | 0.091 | 101 | 0.506 | 0.652 |
| 145 | site13 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.194 | 0.211 | 54 | 0.061 | 0.367 |
| 1510 | site01 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.085 | 0.096 | 124 | 0.348 | 0.376 |
| 1610 | site15 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.081 | 0.064 | 132 | 0.507 | 0.207 |
| 1810 | site06 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.085 | 0.058 | 219 | 0.487 | 0.146 |
| 1910 | site18 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.117 | 0.095 | 114 | 0.404 | 0.224 |
| 203 | site21 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.173 | 0.072 | 166 | 0.472 | 0.017 |
| 2111 | site13 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.032 | 0.080 | 169 | 0.311 | 0.688 |
| 2211 | site20 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | 0.067 | 0.106 | 88 | 0.480 | 0.525 |
| 232 | site20 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.168 | 0.070 | 183 | 0.375 | 0.018 |
| 2410 | site10 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.006 | 0.070 | 165 | 0.451 | 0.932 |
| 2511 | site17 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.016 | 0.066 | 216 | 0.360 | 0.812 |
| 266 | site10 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.270 | 0.126 | 49 | 0.496 | 0.043 |
| 2710 | site12 | smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.024 | 0.065 | 176 | 0.445 | 0.717 |
| 150 | site11 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.084 | 0.082 | 169 | 0.108 | 0.304 |
| 210 | site14 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.182 | 0.083 | 193 | 0.096 | 0.031 |
| 319 | site02 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.020 | 0.066 | 203 | 0.122 | 0.765 |
| 412 | site05 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.202 | 0.110 | 130 | 0.103 | 0.069 |
| 610 | site16 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.121 | 0.064 | 377 | 0.033 | 0.059 |
| 810 | site04 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.006 | 0.091 | 156 | 0.076 | 0.951 |
| 910 | site09 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.132 | 0.128 | 142 | 0.052 | 0.302 |
| 1012 | site19 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.093 | 0.087 | 184 | 0.102 | 0.285 |
| 1112 | site03 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.086 | 0.085 | 161 | 0.010 | 0.316 |
| 1210 | site08 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.073 | 0.130 | 104 | -0.075 | 0.573 |
| 1312 | site07 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.066 | 0.120 | 101 | 0.186 | 0.581 |
| 1410 | site13 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.073 | 0.268 | 54 | -0.485 | 0.789 |
| 1512 | site01 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.206 | 0.117 | 124 | 0.039 | 0.082 |
| 1612 | site15 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.168 | 0.085 | 132 | 0.117 | 0.053 |
| 1811 | site06 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.019 | 0.081 | 219 | 0.027 | 0.813 |
| 1911 | site18 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.012 | 0.132 | 114 | -0.061 | 0.925 |
| 208 | site21 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.064 | 0.094 | 166 | 0.092 | 0.493 |
| 2112 | site13 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.122 | 0.094 | 169 | 0.028 | 0.195 |
| 2212 | site20 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.265 | 0.163 | 88 | -0.078 | 0.110 |
| 237 | site20 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.083 | 0.082 | 183 | 0.159 | 0.314 |
| 2411 | site10 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.150 | 0.095 | 165 | 0.062 | 0.116 |
| 2512 | site17 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.021 | 0.083 | 216 | 0.012 | 0.797 |
| 268 | site10 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.124 | 0.178 | 49 | 0.002 | 0.491 |
| 2711 | site12 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.054 | 0.084 | 176 | 0.081 | 0.521 |
| 3010 | site11 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.166 | 0.082 | 169 | 0.090 | 0.046 |
| 3110 | site14 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.135 | 0.083 | 193 | 0.121 | 0.107 |
| 322 | site02 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.101 | 0.070 | 203 | 0.015 | 0.150 |
| 332 | site05 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.039 | 0.119 | 130 | -0.059 | 0.743 |
| 352 | site16 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.163 | 0.063 | 377 | 0.048 | 0.011 |
| 372 | site04 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.114 | 0.090 | 156 | 0.033 | 0.206 |
| 382 | site09 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.338 | 0.128 | 142 | 0.046 | 0.010 |
| 392 | site19 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.114 | 0.090 | 184 | 0.020 | 0.205 |
| 402 | site03 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.066 | 0.089 | 161 | -0.029 | 0.462 |
| 413 | site08 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.026 | 0.129 | 104 | -0.070 | 0.842 |
| 422 | site07 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.240 | 0.133 | 101 | -0.004 | 0.074 |
| 432 | site13 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.107 | 0.203 | 54 | 0.192 | 0.602 |
| 442 | site01 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.046 | 0.116 | 124 | 0.068 | 0.691 |
| 452 | site15 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.054 | 0.087 | 132 | 0.078 | 0.533 |
| 472 | site06 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.172 | 0.081 | 219 | 0.005 | 0.036 |
| 482 | site18 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.034 | 0.133 | 114 | -0.010 | 0.801 |
| 492 | site21 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.235 | 0.098 | 166 | 0.013 | 0.018 |
| 502 | site13 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.149 | 0.091 | 169 | 0.068 | 0.106 |
| 512 | site20 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.110 | 0.146 | 88 | 0.136 | 0.455 |
| 522 | site20 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.176 | 0.091 | 183 | -0.035 | 0.056 |
| 532 | site10 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.225 | 0.095 | 165 | 0.051 | 0.020 |
| 542 | site17 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.005 | 0.084 | 216 | -0.003 | 0.957 |
| 552 | site10 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.044 | 0.181 | 49 | -0.157 | 0.811 |
| 562 | site12 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.050 | 0.085 | 176 | 0.049 | 0.560 |
| 592 | site11 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.085 | 0.087 | 169 | -0.021 | 0.329 |
| 602 | site14 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.118 | 0.088 | 193 | -0.005 | 0.182 |
| 612 | site02 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.045 | 0.065 | 203 | 0.001 | 0.492 |
| 622 | site05 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.064 | 0.117 | 130 | -0.016 | 0.583 |
| 642 | site16 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.214 | 0.064 | 377 | 0.021 | 0.001 |
| 662 | site04 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.175 | 0.089 | 156 | 0.017 | 0.051 |
| 672 | site09 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.095 | 0.129 | 142 | 0.039 | 0.461 |
| 682 | site19 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.049 | 0.083 | 184 | 0.055 | 0.556 |
| 692 | site03 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.030 | 0.093 | 161 | -0.082 | 0.750 |
| 702 | site08 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.014 | 0.122 | 104 | -0.157 | 0.907 |
| 712 | site07 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.036 | 0.131 | 101 | 0.030 | 0.785 |
| 722 | site13 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.129 | 0.211 | 54 | 0.083 | 0.545 |
| 732 | site01 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.160 | 0.118 | 124 | 0.024 | 0.179 |
| 742 | site15 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.125 | 0.093 | 132 | -0.032 | 0.179 |
| 762 | site06 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.014 | 0.084 | 219 | -0.031 | 0.870 |
| 772 | site18 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.150 | 0.123 | 114 | 0.143 | 0.225 |
| 782 | site21 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.004 | 0.101 | 166 | -0.046 | 0.969 |
| 792 | site13 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.135 | 0.098 | 169 | -0.069 | 0.172 |
| 802 | site20 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.067 | 0.153 | 88 | 0.011 | 0.663 |
| 812 | site20 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.225 | 0.087 | 183 | 0.062 | 0.010 |
| 822 | site10 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.110 | 0.098 | 165 | -0.008 | 0.267 |
| 832 | site17 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.041 | 0.084 | 216 | -0.018 | 0.630 |
| 842 | site10 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.105 | 0.188 | 49 | -0.147 | 0.580 |
| 852 | site12 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.155 | 0.089 | 176 | -0.036 | 0.084 |
| 882 | site11 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.009 | 0.088 | 169 | -0.027 | 0.921 |
| 892 | site14 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.166 | 0.087 | 193 | 0.020 | 0.059 |
| 902 | site02 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.005 | 0.068 | 203 | 0.029 | 0.945 |
| 912 | site05 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.101 | 0.110 | 130 | 0.096 | 0.362 |
| 932 | site16 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.000 | 0.066 | 377 | -0.012 | 0.999 |
| 952 | site04 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.051 | 0.089 | 156 | 0.031 | 0.562 |
| 962 | site09 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.057 | 0.122 | 142 | 0.130 | 0.644 |
| 972 | site19 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.203 | 0.085 | 184 | 0.095 | 0.019 |
| 982 | site03 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.069 | 0.084 | 161 | 0.109 | 0.412 |
| 992 | site08 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.122 | 0.129 | 104 | -0.074 | 0.346 |
| 1002 | site07 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.311 | 0.116 | 101 | 0.233 | 0.009 |
| 1013 | site13 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.109 | 0.186 | 54 | 0.316 | 0.564 |
| 1022 | site01 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.235 | 0.116 | 124 | 0.044 | 0.045 |
| 1032 | site15 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.072 | 0.087 | 132 | 0.075 | 0.411 |
| 1052 | site06 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.066 | 0.083 | 219 | -0.012 | 0.429 |
| 1062 | site18 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.149 | 0.135 | 114 | -0.035 | 0.273 |
| 1072 | site21 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.062 | 0.098 | 166 | 0.000 | 0.532 |
| 1082 | site13 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.165 | 0.080 | 169 | 0.291 | 0.041 |
| 1092 | site20 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.217 | 0.142 | 88 | 0.185 | 0.131 |
| 1102 | site20 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.174 | 0.086 | 183 | 0.086 | 0.044 |
| 1113 | site10 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.061 | 0.093 | 165 | 0.102 | 0.513 |
| 1122 | site17 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.094 | 0.086 | 216 | -0.046 | 0.275 |
| 1132 | site10 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.213 | 0.199 | 49 | -0.609 | 0.295 |
| 1142 | site12 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.098 | 0.084 | 176 | 0.075 | 0.248 |
| 1172 | site11 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.095 | 0.082 | 169 | 0.108 | 0.245 |
| 1182 | site14 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.176 | 0.086 | 193 | 0.006 | 0.042 |
| 1192 | site02 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.108 | 0.065 | 203 | 0.138 | 0.098 |
| 1202 | site05 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.093 | 0.107 | 130 | 0.143 | 0.386 |
| 1222 | site16 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.019 | 0.064 | 377 | 0.022 | 0.773 |
| 1242 | site04 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.065 | 0.093 | 156 | 0.016 | 0.486 |
| 1252 | site09 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.096 | 0.123 | 142 | 0.123 | 0.437 |
| 1262 | site19 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.020 | 0.086 | 184 | 0.072 | 0.819 |
| 1272 | site03 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.075 | 0.087 | 161 | 0.039 | 0.394 |
| 1282 | site08 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.094 | 0.119 | 104 | 0.089 | 0.430 |
| 1292 | site07 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.021 | 0.129 | 101 | 0.066 | 0.871 |
| 1302 | site13 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.191 | 0.241 | 54 | -0.138 | 0.435 |
| 1313 | site01 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.119 | 124 | 0.005 | 0.686 |
| 1322 | site15 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.142 | 0.085 | 132 | 0.135 | 0.098 |
| 1342 | site06 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.178 | 0.081 | 219 | 0.040 | 0.029 |
| 1352 | site18 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.079 | 0.125 | 114 | 0.048 | 0.527 |
| 1362 | site21 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.125 | 0.095 | 166 | 0.055 | 0.193 |
| 1372 | site13 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.146 | 0.093 | 169 | 0.051 | 0.116 |
| 1382 | site20 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.490 | 0.127 | 88 | 0.345 | 0.000 |
| 1392 | site20 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.087 | 0.084 | 183 | 0.115 | 0.306 |
| 1402 | site10 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.130 | 0.098 | 165 | 0.002 | 0.185 |
| 1412 | site17 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.113 | 0.083 | 216 | 0.015 | 0.174 |
| 1422 | site10 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.199 | 0.188 | 49 | -0.120 | 0.301 |
| 1432 | site12 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.171 | 0.087 | 176 | 0.017 | 0.050 |
| 1462 | site11 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.143 | 0.086 | 169 | 0.016 | 0.098 |
| 1472 | site14 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.102 | 0.083 | 193 | 0.052 | 0.219 |
| 1482 | site02 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.094 | 0.069 | 203 | -0.007 | 0.174 |
| 1492 | site05 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.125 | 0.117 | 130 | -0.070 | 0.286 |
| 1513 | site16 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.038 | 0.065 | 377 | 0.012 | 0.555 |
| 1532 | site04 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.149 | 0.092 | 156 | 0.055 | 0.109 |
| 1542 | site09 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | 0.015 | 0.128 | 142 | 0.056 | 0.909 |
| 1552 | site19 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.005 | 0.090 | 184 | 0.027 | 0.952 |
| 1562 | site03 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.126 | 0.089 | 161 | -0.057 | 0.161 |
| 1572 | site08 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | 0.075 | 0.122 | 104 | 0.056 | 0.539 |
| 1582 | site07 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.273 | 0.127 | 101 | 0.085 | 0.035 |
| 1592 | site13 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.028 | 0.238 | 54 | -0.131 | 0.907 |
| 1602 | site01 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.037 | 0.119 | 124 | 0.018 | 0.753 |
| 1613 | site15 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.090 | 0.088 | 132 | 0.057 | 0.311 |
| 1632 | site06 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.124 | 0.084 | 219 | -0.050 | 0.145 |
| 1642 | site18 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.214 | 0.130 | 114 | 0.043 | 0.103 |
| 1652 | site21 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | 0.020 | 0.096 | 166 | 0.047 | 0.839 |
| 1662 | site13 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.107 | 0.093 | 169 | 0.041 | 0.253 |
| 1672 | site20 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.137 | 0.152 | 88 | 0.040 | 0.374 |
| 1682 | site20 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.235 | 0.086 | 183 | 0.069 | 0.007 |
| 1692 | site10 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | 0.004 | 0.095 | 165 | 0.051 | 0.965 |
| 1702 | site17 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.173 | 0.085 | 216 | -0.017 | 0.043 |
| 1712 | site10 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.042 | 0.168 | 49 | 0.105 | 0.804 |
| 1722 | site12 | smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.052 | 0.088 | 176 | -0.039 | 0.557 |
Main_results_bySite.M <- rbind(CortVol_SigResults_bySite.M,
SubCortVol_SigResults_bySite.M,
CortThickResults_bySite.M,
SulcalDepthResults_bySite.M)
#Saving eTable6
write.xlsx(x = Main_results_bySite.M[complete.cases(Main_results_bySite.M),-c(1,4)],#Omit Main effect ID and Aliases and sites in which glme did not fit
file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
sheetName = 'eTable6',
row.names = F,
showNA = F,
append = T
)
kable(Main_results_bySite.M[complete.cases(Main_results_bySite.M),-c(1,4)],#Omit Main effect ID and Aliases and sites in which glme did not fit
caption = 'eTable6 - Associations between Prenatal Adverse Exposures and Significant Brain Regions in Males by Site',
digits = 3) %>%
kable_styling(position = "center")
| Site | Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | |
|---|---|---|---|---|---|---|---|---|---|
| 1 | site11 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.071 | 0.078 | 164 | 0.192 | 0.361 |
| 2 | site14 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.070 | 0.063 | 216 | 0.298 | 0.265 |
| 3 | site02 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | 0.085 | 0.072 | 251 | 0.147 | 0.240 |
| 4 | site05 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.118 | 0.088 | 129 | 0.188 | 0.183 |
| 6 | site16 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.084 | 0.054 | 462 | 0.169 | 0.123 |
| 8 | site04 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.074 | 0.098 | 123 | 0.331 | 0.456 |
| 9 | site09 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.104 | 0.105 | 147 | 0.179 | 0.322 |
| 10 | site19 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.018 | 0.070 | 193 | 0.212 | 0.803 |
| 11 | site03 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | 0.037 | 0.074 | 187 | 0.356 | 0.618 |
| 12 | site08 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.005 | 0.134 | 107 | 0.119 | 0.969 |
| 13 | site07 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.133 | 0.098 | 125 | 0.308 | 0.178 |
| 15 | site01 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.016 | 0.122 | 126 | 0.234 | 0.894 |
| 16 | site15 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | 0.062 | 0.083 | 155 | 0.226 | 0.459 |
| 18 | site06 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.132 | 0.071 | 221 | 0.154 | 0.066 |
| 19 | site18 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.080 | 0.090 | 139 | 0.169 | 0.373 |
| 20 | site21 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.018 | 0.076 | 196 | 0.256 | 0.814 |
| 21 | site13 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | 0.004 | 0.077 | 178 | 0.289 | 0.961 |
| 22 | site20 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.016 | 0.113 | 82 | 0.281 | 0.888 |
| 23 | site20 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.005 | 0.078 | 189 | 0.176 | 0.946 |
| 24 | site10 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | 0.047 | 0.081 | 178 | 0.221 | 0.563 |
| 25 | site17 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | 0.054 | 0.079 | 195 | 0.244 | 0.499 |
| 27 | site12 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | 0.104 | 0.079 | 186 | 0.288 | 0.192 |
| 29 | site04 | smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | 0.032 | 0.108 | 91 | 0.327 | 0.771 |
| 30 | site11 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.069 | 0.065 | 164 | 0.410 | 0.293 |
| 31 | site14 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.110 | 0.057 | 216 | 0.407 | 0.055 |
| 32 | site02 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.004 | 0.065 | 251 | 0.272 | 0.950 |
| 33 | site05 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.081 | 0.081 | 129 | 0.315 | 0.322 |
| 35 | site16 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.081 | 0.050 | 462 | 0.303 | 0.106 |
| 37 | site04 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.188 | 0.093 | 123 | 0.393 | 0.045 |
| 38 | site09 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | 0.001 | 0.095 | 147 | 0.284 | 0.990 |
| 39 | site19 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | 0.045 | 0.061 | 193 | 0.371 | 0.458 |
| 40 | site03 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.059 | 0.074 | 187 | 0.347 | 0.427 |
| 41 | site08 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.030 | 0.113 | 107 | 0.366 | 0.794 |
| 42 | site07 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.197 | 0.099 | 125 | 0.257 | 0.050 |
| 44 | site01 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.028 | 0.107 | 126 | 0.220 | 0.792 |
| 45 | site15 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.092 | 0.070 | 155 | 0.417 | 0.188 |
| 47 | site06 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.100 | 0.067 | 221 | 0.241 | 0.137 |
| 48 | site18 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.036 | 0.080 | 139 | 0.350 | 0.652 |
| 49 | site21 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | 0.001 | 0.075 | 196 | 0.303 | 0.984 |
| 50 | site13 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.121 | 0.073 | 178 | 0.385 | 0.098 |
| 51 | site20 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.049 | 0.096 | 82 | 0.494 | 0.614 |
| 52 | site20 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | 0.019 | 0.067 | 189 | 0.399 | 0.774 |
| 53 | site10 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | 0.022 | 0.072 | 178 | 0.387 | 0.765 |
| 54 | site17 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | 0.005 | 0.072 | 195 | 0.375 | 0.940 |
| 56 | site12 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | 0.015 | 0.066 | 186 | 0.508 | 0.819 |
| 58 | site04 | smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | 0.021 | 0.110 | 91 | 0.316 | 0.850 |
| 59 | site11 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.054 | 0.073 | 164 | 0.284 | 0.464 |
| 60 | site14 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.223 | 0.060 | 216 | 0.320 | 0.000 |
| 61 | site02 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.011 | 0.072 | 251 | 0.129 | 0.877 |
| 62 | site05 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.024 | 0.084 | 129 | 0.235 | 0.779 |
| 64 | site16 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.062 | 0.054 | 462 | 0.158 | 0.252 |
| 66 | site04 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.138 | 0.100 | 123 | 0.318 | 0.171 |
| 67 | site09 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.022 | 0.096 | 147 | 0.215 | 0.816 |
| 68 | site19 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.019 | 0.073 | 193 | 0.187 | 0.793 |
| 69 | site03 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.145 | 0.077 | 187 | 0.283 | 0.063 |
| 70 | site08 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.115 | 0.134 | 107 | 0.114 | 0.395 |
| 71 | site07 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.089 | 0.102 | 125 | 0.269 | 0.386 |
| 73 | site01 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.116 | 0.124 | 126 | 0.210 | 0.348 |
| 74 | site15 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.161 | 0.087 | 155 | 0.154 | 0.066 |
| 76 | site06 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.070 | 0.069 | 221 | 0.229 | 0.307 |
| 77 | site18 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.024 | 0.086 | 139 | 0.198 | 0.779 |
| 78 | site21 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.069 | 0.075 | 196 | 0.282 | 0.360 |
| 79 | site13 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.047 | 0.078 | 178 | 0.278 | 0.548 |
| 80 | site20 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.002 | 0.106 | 82 | 0.367 | 0.984 |
| 81 | site20 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.080 | 0.073 | 189 | 0.277 | 0.275 |
| 82 | site10 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.013 | 0.081 | 178 | 0.211 | 0.872 |
| 83 | site17 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.003 | 0.082 | 195 | 0.189 | 0.974 |
| 85 | site12 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.011 | 0.085 | 186 | 0.191 | 0.896 |
| 87 | site04 | smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.153 | 0.125 | 91 | 0.071 | 0.227 |
| 88 | site11 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.062 | 164 | 0.466 | 0.439 |
| 89 | site14 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.080 | 0.054 | 216 | 0.463 | 0.138 |
| 90 | site02 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.023 | 0.059 | 251 | 0.401 | 0.698 |
| 91 | site05 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.049 | 0.071 | 129 | 0.482 | 0.493 |
| 93 | site16 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.091 | 0.046 | 462 | 0.389 | 0.051 |
| 95 | site04 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.108 | 0.090 | 123 | 0.423 | 0.232 |
| 96 | site09 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.071 | 0.092 | 147 | 0.361 | 0.445 |
| 97 | site19 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.027 | 0.053 | 193 | 0.491 | 0.610 |
| 98 | site03 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.072 | 0.067 | 187 | 0.474 | 0.279 |
| 99 | site08 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.141 | 0.110 | 107 | 0.402 | 0.203 |
| 100 | site07 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.226 | 0.085 | 125 | 0.465 | 0.010 |
| 102 | site01 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.001 | 0.113 | 126 | 0.329 | 0.994 |
| 103 | site15 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.010 | 0.064 | 155 | 0.545 | 0.879 |
| 105 | site06 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.070 | 0.064 | 221 | 0.332 | 0.273 |
| 106 | site18 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.080 | 0.072 | 139 | 0.443 | 0.269 |
| 107 | site21 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.015 | 0.066 | 196 | 0.440 | 0.823 |
| 108 | site13 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.116 | 0.068 | 178 | 0.461 | 0.090 |
| 109 | site20 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.153 | 0.102 | 82 | 0.430 | 0.138 |
| 110 | site20 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.029 | 0.061 | 189 | 0.509 | 0.635 |
| 111 | site10 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.002 | 0.066 | 178 | 0.488 | 0.970 |
| 112 | site17 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | 0.048 | 0.067 | 195 | 0.454 | 0.474 |
| 114 | site12 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.032 | 0.067 | 186 | 0.504 | 0.630 |
| 116 | site04 | smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.057 | 0.105 | 91 | 0.365 | 0.592 |
| 117 | site11 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | 0.006 | 0.066 | 164 | 0.416 | 0.922 |
| 118 | site14 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.157 | 0.058 | 216 | 0.372 | 0.008 |
| 119 | site02 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.079 | 0.065 | 251 | 0.284 | 0.231 |
| 120 | site05 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.058 | 0.074 | 129 | 0.314 | 0.439 |
| 122 | site16 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.076 | 0.050 | 462 | 0.287 | 0.132 |
| 124 | site04 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.063 | 0.079 | 123 | 0.578 | 0.428 |
| 125 | site09 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.168 | 0.091 | 147 | 0.356 | 0.068 |
| 126 | site19 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.013 | 0.061 | 193 | 0.379 | 0.837 |
| 127 | site03 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.034 | 0.079 | 187 | 0.250 | 0.668 |
| 128 | site08 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | 0.033 | 0.120 | 107 | 0.240 | 0.783 |
| 129 | site07 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.055 | 0.095 | 125 | 0.375 | 0.560 |
| 131 | site01 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | 0.070 | 0.116 | 126 | 0.198 | 0.547 |
| 132 | site15 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.079 | 0.080 | 155 | 0.292 | 0.324 |
| 134 | site06 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.096 | 0.068 | 221 | 0.198 | 0.162 |
| 135 | site18 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.013 | 0.076 | 139 | 0.365 | 0.865 |
| 136 | site21 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.227 | 0.069 | 196 | 0.407 | 0.001 |
| 137 | site13 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.014 | 0.072 | 178 | 0.394 | 0.845 |
| 138 | site20 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.028 | 0.097 | 82 | 0.482 | 0.773 |
| 139 | site20 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | 0.064 | 0.071 | 189 | 0.321 | 0.371 |
| 140 | site10 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.043 | 0.074 | 178 | 0.343 | 0.564 |
| 141 | site17 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | 0.072 | 0.074 | 195 | 0.343 | 0.330 |
| 143 | site12 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.030 | 0.074 | 186 | 0.394 | 0.681 |
| 145 | site04 | smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | 0.025 | 0.101 | 91 | 0.397 | 0.807 |
| 146 | site11 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.085 | 0.069 | 164 | 0.358 | 0.219 |
| 147 | site14 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.024 | 0.062 | 216 | 0.301 | 0.696 |
| 148 | site02 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.104 | 0.066 | 251 | 0.243 | 0.117 |
| 149 | site05 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.002 | 0.089 | 129 | 0.163 | 0.981 |
| 151 | site16 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.064 | 0.052 | 462 | 0.237 | 0.218 |
| 153 | site04 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.025 | 0.099 | 123 | 0.281 | 0.801 |
| 154 | site09 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.119 | 0.094 | 147 | 0.298 | 0.209 |
| 155 | site19 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.033 | 0.063 | 193 | 0.393 | 0.598 |
| 156 | site03 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.149 | 0.073 | 187 | 0.346 | 0.043 |
| 157 | site08 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.049 | 0.139 | 107 | 0.055 | 0.724 |
| 158 | site07 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.155 | 0.099 | 125 | 0.283 | 0.122 |
| 160 | site01 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.000 | 0.122 | 126 | 0.219 | 0.998 |
| 161 | site15 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.184 | 0.082 | 155 | 0.253 | 0.026 |
| 163 | site06 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.035 | 0.064 | 221 | 0.323 | 0.580 |
| 164 | site18 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.105 | 0.088 | 139 | 0.203 | 0.234 |
| 165 | site21 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.054 | 0.073 | 196 | 0.326 | 0.458 |
| 166 | site13 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.045 | 0.079 | 178 | 0.245 | 0.570 |
| 167 | site20 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.095 | 0.101 | 82 | 0.397 | 0.351 |
| 168 | site20 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.138 | 0.069 | 189 | 0.346 | 0.048 |
| 169 | site10 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.033 | 0.081 | 178 | 0.224 | 0.683 |
| 170 | site17 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.018 | 0.080 | 195 | 0.220 | 0.821 |
| 172 | site12 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.029 | 0.078 | 186 | 0.315 | 0.716 |
| 174 | site04 | smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.271 | 0.116 | 91 | 0.207 | 0.023 |
| 175 | site11 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | -0.004 | 0.074 | 164 | 0.247 | 0.957 |
| 176 | site14 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.015 | 0.067 | 216 | 0.229 | 0.820 |
| 177 | site02 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.206 | 0.070 | 251 | 0.198 | 0.003 |
| 178 | site05 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | -0.012 | 0.093 | 129 | 0.106 | 0.896 |
| 180 | site16 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.086 | 0.054 | 462 | 0.171 | 0.112 |
| 182 | site04 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | -0.059 | 0.110 | 123 | 0.163 | 0.593 |
| 183 | site09 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.093 | 0.110 | 147 | 0.093 | 0.401 |
| 184 | site19 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.123 | 0.074 | 193 | 0.054 | 0.098 |
| 185 | site03 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.018 | 0.087 | 187 | 0.112 | 0.834 |
| 186 | site08 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | -0.141 | 0.132 | 107 | 0.133 | 0.289 |
| 187 | site07 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.037 | 0.107 | 125 | 0.207 | 0.731 |
| 189 | site01 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | -0.023 | 0.131 | 126 | 0.102 | 0.862 |
| 190 | site15 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.110 | 0.085 | 155 | 0.199 | 0.199 |
| 192 | site06 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | -0.012 | 0.069 | 221 | 0.215 | 0.860 |
| 193 | site18 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.065 | 0.090 | 139 | 0.158 | 0.475 |
| 194 | site21 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.041 | 0.080 | 196 | 0.189 | 0.607 |
| 195 | site13 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.071 | 0.090 | 178 | 0.042 | 0.429 |
| 196 | site20 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | -0.035 | 0.133 | 82 | 0.021 | 0.795 |
| 197 | site20 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.076 | 0.081 | 189 | 0.124 | 0.350 |
| 198 | site10 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.233 | 0.078 | 178 | 0.280 | 0.003 |
| 199 | site17 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.102 | 0.087 | 195 | 0.064 | 0.246 |
| 201 | site12 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.035 | 0.081 | 186 | 0.263 | 0.670 |
| 203 | site04 | smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.171 | 0.115 | 91 | 0.221 | 0.143 |
| 14 | site11 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.055 | 0.064 | 164 | 0.443 | 0.387 |
| 26 | site14 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.083 | 0.057 | 216 | 0.436 | 0.146 |
| 34 | site02 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.073 | 0.062 | 251 | 0.384 | 0.240 |
| 43 | site05 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.013 | 0.069 | 129 | 0.443 | 0.848 |
| 63 | site16 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.106 | 0.047 | 462 | 0.368 | 0.026 |
| 84 | site04 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.038 | 0.082 | 123 | 0.371 | 0.643 |
| 92 | site09 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.100 | 0.097 | 147 | 0.292 | 0.302 |
| 101 | site19 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.197 | 0.062 | 193 | 0.318 | 0.002 |
| 113 | site03 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.012 | 0.075 | 187 | 0.319 | 0.875 |
| 121 | site08 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.211 | 0.126 | 107 | 0.146 | 0.097 |
| 133 | site07 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.048 | 0.086 | 125 | 0.469 | 0.576 |
| 152 | site01 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.057 | 0.119 | 126 | 0.241 | 0.632 |
| 162 | site15 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.091 | 0.076 | 155 | 0.324 | 0.233 |
| 181 | site06 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.063 | 0.058 | 221 | 0.446 | 0.277 |
| 191 | site18 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.028 | 0.090 | 139 | 0.182 | 0.758 |
| 202 | site21 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.035 | 0.070 | 196 | 0.361 | 0.617 |
| 217 | site13 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.091 | 0.081 | 178 | 0.174 | 0.263 |
| 229 | site20 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.131 | 0.109 | 82 | 0.326 | 0.238 |
| 231 | site20 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.020 | 0.068 | 189 | 0.385 | 0.765 |
| 246 | site10 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.039 | 0.082 | 178 | 0.154 | 0.640 |
| 258 | site17 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.064 | 0.073 | 195 | 0.365 | 0.383 |
| 275 | site12 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.094 | 0.076 | 186 | 0.342 | 0.219 |
| 295 | site04 | smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.007 | 0.109 | 91 | 0.280 | 0.952 |
| 304 | site11 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.073 | 0.076 | 164 | 0.208 | 0.340 |
| 316 | site14 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.038 | 0.069 | 216 | 0.173 | 0.577 |
| 324 | site02 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.068 | 0.074 | 251 | 0.118 | 0.360 |
| 333 | site05 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.026 | 0.093 | 129 | 0.085 | 0.780 |
| 353 | site16 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.053 | 0.054 | 462 | 0.182 | 0.322 |
| 374 | site04 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.089 | 0.120 | 123 | 0.037 | 0.460 |
| 382 | site09 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.004 | 0.100 | 147 | 0.247 | 0.971 |
| 391 | site19 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.153 | 0.069 | 193 | 0.208 | 0.028 |
| 403 | site03 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.185 | 0.080 | 187 | 0.231 | 0.021 |
| 411 | site08 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.105 | 0.147 | 107 | -0.123 | 0.476 |
| 423 | site07 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.115 | 0.114 | 125 | 0.069 | 0.314 |
| 442 | site01 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.006 | 0.121 | 126 | 0.235 | 0.961 |
| 452 | site15 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.072 | 0.086 | 155 | 0.156 | 0.402 |
| 471 | site06 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.018 | 0.068 | 221 | 0.236 | 0.793 |
| 481 | site18 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.107 | 0.093 | 139 | 0.139 | 0.252 |
| 492 | site21 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.083 | 0.083 | 196 | 0.146 | 0.315 |
| 507 | site13 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.008 | 0.089 | 178 | 0.086 | 0.931 |
| 519 | site20 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.101 | 0.137 | 82 | -0.058 | 0.465 |
| 521 | site20 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.108 | 0.077 | 189 | 0.195 | 0.165 |
| 536 | site10 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.068 | 0.078 | 178 | 0.147 | 0.386 |
| 548 | site17 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.118 | 0.078 | 195 | 0.276 | 0.131 |
| 565 | site12 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.138 | 0.089 | 186 | 0.116 | 0.124 |
| 581 | site04 | smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.013 | 0.124 | 91 | 0.096 | 0.915 |
| 591 | site11 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.022 | 0.061 | 164 | 0.449 | 0.726 |
| 601 | site14 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.021 | 0.056 | 216 | 0.469 | 0.712 |
| 611 | site02 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.123 | 0.059 | 251 | 0.437 | 0.037 |
| 621 | site05 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.041 | 0.073 | 129 | 0.425 | 0.578 |
| 641 | site16 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.141 | 0.045 | 462 | 0.429 | 0.002 |
| 661 | site04 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.122 | 0.079 | 123 | 0.546 | 0.124 |
| 671 | site09 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.087 | 147 | 0.419 | 0.582 |
| 681 | site19 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.036 | 0.063 | 193 | 0.323 | 0.563 |
| 691 | site03 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.065 | 0.063 | 187 | 0.516 | 0.304 |
| 701 | site08 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.029 | 0.112 | 107 | 0.373 | 0.797 |
| 711 | site07 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.138 | 0.087 | 125 | 0.423 | 0.115 |
| 731 | site01 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.025 | 0.104 | 126 | 0.437 | 0.810 |
| 741 | site15 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.086 | 0.071 | 155 | 0.438 | 0.223 |
| 761 | site06 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.014 | 0.055 | 221 | 0.514 | 0.795 |
| 771 | site18 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.125 | 0.069 | 139 | 0.516 | 0.070 |
| 781 | site21 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | 0.015 | 0.067 | 196 | 0.417 | 0.829 |
| 791 | site13 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.138 | 0.071 | 178 | 0.411 | 0.054 |
| 801 | site20 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.067 | 0.103 | 82 | 0.409 | 0.517 |
| 811 | site20 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.119 | 0.069 | 189 | 0.374 | 0.085 |
| 821 | site10 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.023 | 0.066 | 178 | 0.481 | 0.721 |
| 831 | site17 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.015 | 0.070 | 195 | 0.399 | 0.834 |
| 851 | site12 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.103 | 0.068 | 186 | 0.482 | 0.129 |
| 871 | site04 | smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.058 | 0.108 | 91 | 0.314 | 0.591 |
| 881 | site11 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.003 | 0.061 | 164 | 0.491 | 0.959 |
| 891 | site14 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.178 | 0.054 | 216 | 0.471 | 0.001 |
| 901 | site02 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.003 | 0.059 | 251 | 0.423 | 0.961 |
| 911 | site05 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.070 | 0.062 | 129 | 0.585 | 0.261 |
| 931 | site16 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.043 | 0.046 | 462 | 0.414 | 0.346 |
| 951 | site04 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.076 | 0.089 | 123 | 0.469 | 0.398 |
| 961 | site09 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.051 | 0.093 | 147 | 0.347 | 0.582 |
| 971 | site19 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.114 | 0.059 | 193 | 0.410 | 0.056 |
| 981 | site03 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.043 | 0.072 | 187 | 0.369 | 0.554 |
| 991 | site08 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.165 | 0.113 | 107 | 0.359 | 0.148 |
| 1001 | site07 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.053 | 0.086 | 125 | 0.467 | 0.537 |
| 1021 | site01 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.078 | 0.082 | 126 | 0.514 | 0.345 |
| 1031 | site15 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.011 | 0.067 | 155 | 0.505 | 0.874 |
| 1051 | site06 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.090 | 0.057 | 221 | 0.459 | 0.119 |
| 1061 | site18 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.018 | 0.079 | 139 | 0.364 | 0.822 |
| 1071 | site21 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.076 | 0.068 | 196 | 0.407 | 0.266 |
| 1081 | site13 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.082 | 0.075 | 178 | 0.300 | 0.280 |
| 1091 | site20 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.045 | 0.093 | 82 | 0.507 | 0.628 |
| 1101 | site20 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.015 | 0.060 | 189 | 0.515 | 0.799 |
| 1111 | site10 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.043 | 0.070 | 178 | 0.415 | 0.533 |
| 1121 | site17 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.114 | 0.065 | 195 | 0.494 | 0.083 |
| 1141 | site12 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.097 | 0.069 | 186 | 0.465 | 0.162 |
| 1161 | site04 | smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | -0.123 | 0.094 | 91 | 0.471 | 0.193 |
| 1171 | site11 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.006 | 0.065 | 164 | 0.426 | 0.921 |
| 1181 | site14 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.113 | 0.058 | 216 | 0.405 | 0.054 |
| 1191 | site02 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.047 | 0.058 | 251 | 0.447 | 0.425 |
| 1201 | site05 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.093 | 0.084 | 129 | 0.230 | 0.271 |
| 1221 | site16 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.133 | 0.046 | 462 | 0.408 | 0.004 |
| 1241 | site04 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.045 | 0.101 | 123 | 0.322 | 0.658 |
| 1251 | site09 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.027 | 0.092 | 147 | 0.353 | 0.769 |
| 1261 | site19 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.017 | 0.064 | 193 | 0.307 | 0.789 |
| 1271 | site03 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.018 | 0.077 | 187 | 0.281 | 0.818 |
| 1281 | site08 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.070 | 0.132 | 107 | 0.120 | 0.597 |
| 1291 | site07 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.013 | 0.092 | 125 | 0.370 | 0.886 |
| 1311 | site01 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.030 | 0.113 | 126 | 0.343 | 0.791 |
| 1321 | site15 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.031 | 0.077 | 155 | 0.338 | 0.690 |
| 1341 | site06 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.055 | 0.060 | 221 | 0.417 | 0.357 |
| 1351 | site18 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.071 | 0.073 | 139 | 0.466 | 0.332 |
| 1361 | site21 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.105 | 0.072 | 196 | 0.360 | 0.146 |
| 1371 | site13 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.104 | 0.080 | 178 | 0.251 | 0.195 |
| 1381 | site20 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.041 | 0.117 | 82 | 0.237 | 0.730 |
| 1391 | site20 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.011 | 0.070 | 189 | 0.357 | 0.874 |
| 1401 | site10 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.030 | 0.073 | 178 | 0.362 | 0.680 |
| 1411 | site17 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.102 | 0.081 | 195 | 0.206 | 0.212 |
| 1431 | site12 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.017 | 0.074 | 186 | 0.381 | 0.816 |
| 1451 | site04 | smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.170 | 0.104 | 91 | 0.350 | 0.106 |
| 1461 | site11 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.075 | 0.079 | 164 | 0.153 | 0.345 |
| 1471 | site14 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.029 | 0.071 | 216 | 0.137 | 0.678 |
| 1481 | site02 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.042 | 0.073 | 251 | 0.072 | 0.566 |
| 1491 | site05 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.004 | 0.092 | 129 | 0.101 | 0.966 |
| 1511 | site16 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.065 | 0.056 | 462 | 0.108 | 0.247 |
| 1531 | site04 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.071 | 0.114 | 123 | 0.112 | 0.533 |
| 1541 | site09 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.152 | 0.107 | 147 | 0.131 | 0.158 |
| 1551 | site19 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.019 | 0.073 | 193 | 0.153 | 0.794 |
| 1561 | site03 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.004 | 0.087 | 187 | 0.082 | 0.961 |
| 1571 | site08 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.008 | 0.139 | 107 | 0.020 | 0.952 |
| 1581 | site07 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.254 | 0.117 | 125 | 0.017 | 0.033 |
| 1601 | site01 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.056 | 0.137 | 126 | 0.028 | 0.684 |
| 1611 | site15 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.007 | 0.091 | 155 | 0.068 | 0.940 |
| 1631 | site06 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.092 | 0.069 | 221 | 0.209 | 0.185 |
| 1641 | site18 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.090 | 0.093 | 139 | 0.125 | 0.335 |
| 1651 | site21 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.102 | 0.081 | 196 | 0.185 | 0.208 |
| 1661 | site13 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.041 | 0.090 | 178 | 0.011 | 0.653 |
| 1671 | site20 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.011 | 0.136 | 82 | -0.027 | 0.935 |
| 1681 | site20 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.062 | 0.081 | 189 | 0.117 | 0.450 |
| 1691 | site10 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.062 | 0.088 | 178 | 0.087 | 0.483 |
| 1701 | site17 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.182 | 0.088 | 195 | 0.082 | 0.040 |
| 1721 | site12 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.012 | 0.092 | 186 | 0.049 | 0.900 |
| 1741 | site04 | smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.139 | 0.127 | 91 | 0.037 | 0.278 |
| 1751 | site11 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.097 | 0.083 | 164 | 0.054 | 0.246 |
| 1761 | site14 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.194 | 0.071 | 216 | 0.102 | 0.007 |
| 1771 | site02 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.065 | 0.075 | 251 | 0.042 | 0.389 |
| 1781 | site05 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.074 | 0.095 | 129 | 0.031 | 0.433 |
| 1801 | site16 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.042 | 0.058 | 462 | 0.040 | 0.470 |
| 1821 | site04 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.139 | 0.120 | 123 | 0.039 | 0.250 |
| 1831 | site09 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.084 | 0.107 | 147 | 0.126 | 0.437 |
| 1841 | site19 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.134 | 0.074 | 193 | 0.052 | 0.072 |
| 1851 | site03 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.091 | 0.082 | 187 | 0.153 | 0.266 |
| 1861 | site08 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.051 | 0.120 | 107 | 0.247 | 0.673 |
| 1871 | site07 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.001 | 0.110 | 125 | 0.082 | 0.992 |
| 1891 | site01 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.058 | 0.131 | 126 | 0.060 | 0.659 |
| 1901 | site15 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.004 | 0.089 | 155 | 0.035 | 0.966 |
| 1921 | site06 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.080 | 0.072 | 221 | 0.129 | 0.270 |
| 1931 | site18 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.036 | 0.084 | 139 | 0.033 | 0.669 |
| 1941 | site21 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.144 | 0.088 | 196 | 0.044 | 0.103 |
| 1951 | site13 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.086 | 0.084 | 178 | 0.109 | 0.310 |
| 1961 | site20 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.003 | 0.115 | 82 | 0.226 | 0.983 |
| 1971 | site20 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.043 | 0.083 | 189 | 0.074 | 0.610 |
| 1981 | site10 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.001 | 0.092 | 178 | -0.008 | 0.992 |
| 1991 | site17 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.160 | 0.089 | 195 | 0.051 | 0.074 |
| 2011 | site12 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.104 | 0.093 | 186 | 0.017 | 0.269 |
| 2031 | site04 | smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.034 | 0.123 | 91 | 0.089 | 0.783 |
| 204 | site11 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.029 | 0.066 | 164 | 0.398 | 0.659 |
| 205 | site14 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.180 | 0.061 | 216 | 0.282 | 0.003 |
| 206 | site02 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.002 | 0.063 | 251 | 0.357 | 0.980 |
| 207 | site05 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.133 | 0.081 | 129 | 0.299 | 0.102 |
| 209 | site16 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.026 | 0.052 | 462 | 0.233 | 0.621 |
| 211 | site04 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.010 | 0.102 | 123 | 0.304 | 0.921 |
| 212 | site09 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.105 | 0.088 | 147 | 0.409 | 0.235 |
| 213 | site19 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.086 | 0.066 | 193 | 0.283 | 0.193 |
| 214 | site03 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.017 | 0.074 | 187 | 0.336 | 0.815 |
| 215 | site08 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.022 | 0.128 | 107 | 0.052 | 0.864 |
| 216 | site07 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.206 | 0.093 | 125 | 0.375 | 0.029 |
| 218 | site01 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.009 | 0.108 | 126 | 0.382 | 0.935 |
| 219 | site15 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.025 | 0.079 | 155 | 0.249 | 0.752 |
| 221 | site06 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.042 | 0.057 | 221 | 0.473 | 0.465 |
| 222 | site18 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.133 | 0.081 | 139 | 0.304 | 0.102 |
| 223 | site21 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.036 | 0.079 | 196 | 0.213 | 0.651 |
| 224 | site13 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.091 | 0.083 | 178 | 0.190 | 0.275 |
| 225 | site20 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.126 | 0.114 | 82 | 0.241 | 0.274 |
| 226 | site20 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.015 | 0.072 | 189 | 0.313 | 0.831 |
| 227 | site10 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.099 | 0.080 | 178 | 0.234 | 0.219 |
| 228 | site17 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.017 | 0.074 | 195 | 0.352 | 0.817 |
| 230 | site12 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.100 | 0.084 | 186 | 0.198 | 0.237 |
| 232 | site04 | smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.001 | 0.114 | 91 | 0.229 | 0.993 |
| 233 | site11 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.034 | 0.077 | 164 | 0.200 | 0.662 |
| 234 | site14 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.179 | 0.067 | 216 | 0.238 | 0.008 |
| 235 | site02 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.056 | 0.069 | 251 | 0.236 | 0.418 |
| 236 | site05 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.076 | 0.089 | 129 | 0.151 | 0.397 |
| 238 | site16 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.080 | 0.054 | 462 | 0.177 | 0.142 |
| 240 | site04 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.192 | 0.104 | 123 | 0.277 | 0.069 |
| 241 | site09 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.055 | 0.089 | 147 | 0.183 | 0.541 |
| 242 | site19 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.075 | 0.068 | 193 | 0.242 | 0.272 |
| 243 | site03 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.096 | 0.068 | 187 | 0.439 | 0.161 |
| 244 | site08 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.128 | 0.144 | 107 | -0.092 | 0.379 |
| 245 | site07 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.121 | 0.093 | 125 | 0.301 | 0.192 |
| 247 | site01 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.147 | 0.132 | 126 | 0.099 | 0.268 |
| 248 | site15 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.076 | 0.083 | 155 | 0.226 | 0.365 |
| 250 | site06 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.059 | 0.063 | 221 | 0.350 | 0.347 |
| 251 | site18 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.101 | 0.094 | 139 | 0.114 | 0.284 |
| 252 | site21 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.058 | 0.077 | 196 | 0.255 | 0.454 |
| 253 | site13 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.000 | 0.089 | 178 | 0.084 | 0.998 |
| 254 | site20 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.086 | 0.115 | 82 | 0.248 | 0.460 |
| 255 | site20 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.002 | 0.072 | 189 | 0.313 | 0.974 |
| 256 | site10 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.103 | 0.085 | 178 | 0.047 | 0.229 |
| 257 | site17 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.052 | 0.079 | 195 | 0.251 | 0.513 |
| 259 | site12 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.272 | 0.080 | 186 | 0.275 | 0.001 |
| 261 | site04 | smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.162 | 0.125 | 91 | 0.068 | 0.200 |
| 262 | site11 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.041 | 0.051 | 164 | 0.633 | 0.430 |
| 263 | site14 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.029 | 0.055 | 216 | 0.483 | 0.595 |
| 264 | site02 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.154 | 0.052 | 251 | 0.553 | 0.004 |
| 265 | site05 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.006 | 0.069 | 129 | 0.485 | 0.933 |
| 267 | site16 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.064 | 0.045 | 462 | 0.441 | 0.155 |
| 269 | site04 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.059 | 0.089 | 123 | 0.447 | 0.506 |
| 270 | site09 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.128 | 0.074 | 147 | 0.584 | 0.087 |
| 271 | site19 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.105 | 0.053 | 193 | 0.490 | 0.052 |
| 272 | site03 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.275 | 0.058 | 187 | 0.591 | 0.000 |
| 273 | site08 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.024 | 0.116 | 107 | 0.320 | 0.835 |
| 274 | site07 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.073 | 0.083 | 125 | 0.481 | 0.377 |
| 276 | site01 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.046 | 0.113 | 126 | 0.332 | 0.688 |
| 277 | site15 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.096 | 0.061 | 155 | 0.520 | 0.119 |
| 279 | site06 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.056 | 0.053 | 221 | 0.518 | 0.298 |
| 280 | site18 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.160 | 0.069 | 139 | 0.521 | 0.022 |
| 281 | site21 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.009 | 0.066 | 196 | 0.450 | 0.890 |
| 282 | site13 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.137 | 0.070 | 178 | 0.401 | 0.052 |
| 283 | site20 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.009 | 0.099 | 82 | 0.453 | 0.924 |
| 284 | site20 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.079 | 0.060 | 189 | 0.528 | 0.188 |
| 285 | site10 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | 0.045 | 0.065 | 178 | 0.491 | 0.491 |
| 286 | site17 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.012 | 0.068 | 195 | 0.451 | 0.854 |
| 288 | site12 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.074 | 0.066 | 186 | 0.511 | 0.268 |
| 290 | site04 | smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.104 | 0.105 | 91 | 0.338 | 0.323 |
| 291 | site11 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.128 | 0.069 | 164 | 0.343 | 0.066 |
| 292 | site14 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.020 | 0.060 | 216 | 0.388 | 0.741 |
| 293 | site02 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.077 | 0.062 | 251 | 0.386 | 0.214 |
| 294 | site05 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.124 | 0.083 | 129 | 0.260 | 0.138 |
| 296 | site16 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.001 | 0.050 | 462 | 0.303 | 0.990 |
| 298 | site04 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.088 | 0.111 | 123 | 0.038 | 0.428 |
| 299 | site09 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.130 | 0.090 | 147 | 0.392 | 0.149 |
| 300 | site19 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.121 | 0.064 | 193 | 0.327 | 0.063 |
| 301 | site03 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.191 | 0.073 | 187 | 0.347 | 0.010 |
| 302 | site08 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.177 | 0.128 | 107 | 0.155 | 0.171 |
| 303 | site07 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.047 | 0.086 | 125 | 0.472 | 0.582 |
| 305 | site01 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.022 | 0.104 | 126 | 0.419 | 0.830 |
| 306 | site15 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.123 | 0.081 | 155 | 0.277 | 0.128 |
| 308 | site06 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.048 | 0.067 | 221 | 0.251 | 0.477 |
| 309 | site18 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.004 | 0.077 | 139 | 0.411 | 0.956 |
| 310 | site21 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.118 | 0.077 | 196 | 0.262 | 0.128 |
| 311 | site13 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.062 | 0.076 | 178 | 0.293 | 0.414 |
| 312 | site20 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.027 | 0.126 | 82 | 0.111 | 0.830 |
| 313 | site20 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.052 | 0.067 | 189 | 0.385 | 0.440 |
| 314 | site10 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.031 | 0.078 | 178 | 0.269 | 0.691 |
| 315 | site17 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.080 | 0.076 | 195 | 0.278 | 0.291 |
| 317 | site12 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.053 | 0.075 | 186 | 0.369 | 0.480 |
| 319 | site04 | smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.048 | 0.104 | 91 | 0.343 | 0.646 |
| 320 | site11 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.018 | 0.081 | 164 | 0.099 | 0.828 |
| 321 | site14 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.152 | 0.072 | 216 | 0.076 | 0.037 |
| 322 | site02 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.028 | 0.074 | 251 | 0.072 | 0.708 |
| 323 | site05 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.104 | 0.089 | 129 | 0.147 | 0.243 |
| 325 | site16 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.076 | 0.058 | 462 | 0.063 | 0.188 |
| 327 | site04 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.192 | 0.120 | 123 | 0.043 | 0.111 |
| 328 | site09 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.043 | 0.107 | 147 | 0.124 | 0.689 |
| 329 | site19 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.040 | 0.074 | 193 | 0.084 | 0.594 |
| 330 | site03 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.074 | 0.086 | 187 | 0.111 | 0.388 |
| 331 | site08 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.220 | 0.140 | 107 | 0.016 | 0.120 |
| 332 | site07 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.012 | 0.116 | 125 | 0.034 | 0.915 |
| 334 | site01 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.049 | 0.142 | 126 | -0.046 | 0.733 |
| 335 | site15 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.030 | 0.091 | 155 | 0.080 | 0.741 |
| 337 | site06 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.006 | 0.069 | 221 | 0.209 | 0.934 |
| 338 | site18 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.016 | 0.094 | 139 | 0.110 | 0.867 |
| 339 | site21 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.003 | 0.083 | 196 | 0.132 | 0.970 |
| 340 | site13 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.011 | 0.087 | 178 | 0.121 | 0.899 |
| 341 | site20 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.091 | 0.132 | 82 | 0.016 | 0.491 |
| 342 | site20 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.040 | 0.081 | 189 | 0.120 | 0.620 |
| 343 | site10 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.151 | 0.089 | 178 | 0.026 | 0.092 |
| 344 | site17 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.003 | 0.091 | 195 | -0.003 | 0.970 |
| 346 | site12 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.086 | 0.092 | 186 | 0.058 | 0.355 |
| 348 | site04 | smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.117 | 0.127 | 91 | 0.057 | 0.359 |
| 349 | site11 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.072 | 0.054 | 164 | 0.598 | 0.189 |
| 350 | site14 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.175 | 0.056 | 216 | 0.443 | 0.002 |
| 351 | site02 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.039 | 0.050 | 251 | 0.543 | 0.441 |
| 352 | site05 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.132 | 0.068 | 129 | 0.455 | 0.054 |
| 354 | site16 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.046 | 0.044 | 462 | 0.445 | 0.291 |
| 356 | site04 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.076 | 0.083 | 123 | 0.515 | 0.362 |
| 357 | site09 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.006 | 0.075 | 147 | 0.565 | 0.941 |
| 358 | site19 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.011 | 0.049 | 193 | 0.578 | 0.824 |
| 359 | site03 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.061 | 187 | 0.550 | 0.428 |
| 360 | site08 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.145 | 0.099 | 107 | 0.503 | 0.149 |
| 361 | site07 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.012 | 0.088 | 125 | 0.448 | 0.893 |
| 363 | site01 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.093 | 0.092 | 126 | 0.558 | 0.309 |
| 364 | site15 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.019 | 0.066 | 155 | 0.512 | 0.774 |
| 366 | site06 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.102 | 0.054 | 221 | 0.516 | 0.059 |
| 367 | site18 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.031 | 0.071 | 139 | 0.401 | 0.658 |
| 368 | site21 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.087 | 0.065 | 196 | 0.435 | 0.182 |
| 369 | site13 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.007 | 0.078 | 178 | 0.292 | 0.927 |
| 370 | site20 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.024 | 0.088 | 82 | 0.571 | 0.785 |
| 371 | site20 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.027 | 0.062 | 189 | 0.496 | 0.657 |
| 372 | site10 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.023 | 0.056 | 178 | 0.565 | 0.686 |
| 373 | site17 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.036 | 0.069 | 195 | 0.437 | 0.598 |
| 375 | site12 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.112 | 0.056 | 186 | 0.651 | 0.046 |
| 377 | site04 | smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.172 | 0.098 | 91 | 0.418 | 0.084 |
| 378 | site11 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.005 | 0.076 | 164 | 0.206 | 0.952 |
| 379 | site14 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.083 | 0.073 | 216 | 0.084 | 0.257 |
| 380 | site02 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.149 | 0.074 | 251 | 0.103 | 0.047 |
| 381 | site05 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.058 | 0.085 | 129 | 0.232 | 0.497 |
| 383 | site16 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.086 | 0.056 | 462 | 0.118 | 0.127 |
| 385 | site04 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.057 | 0.111 | 123 | 0.176 | 0.609 |
| 386 | site09 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.030 | 0.111 | 147 | 0.068 | 0.787 |
| 387 | site19 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.057 | 0.075 | 193 | 0.072 | 0.450 |
| 388 | site03 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.039 | 0.084 | 187 | 0.136 | 0.647 |
| 389 | site08 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.184 | 0.131 | 107 | 0.136 | 0.165 |
| 390 | site07 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.092 | 0.119 | 125 | -0.064 | 0.442 |
| 392 | site01 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.017 | 0.131 | 126 | 0.100 | 0.896 |
| 393 | site15 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.001 | 0.090 | 155 | 0.050 | 0.991 |
| 395 | site06 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.143 | 0.070 | 221 | 0.196 | 0.042 |
| 396 | site18 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.138 | 0.092 | 139 | 0.119 | 0.137 |
| 397 | site21 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.000 | 0.085 | 196 | 0.073 | 0.998 |
| 398 | site13 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.095 | 0.089 | 178 | 0.071 | 0.289 |
| 399 | site20 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.021 | 0.126 | 82 | -0.126 | 0.868 |
| 400 | site20 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | -0.122 | 0.082 | 189 | 0.094 | 0.140 |
| 401 | site10 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.230 | 0.084 | 178 | 0.154 | 0.007 |
| 402 | site17 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.091 | 0.085 | 195 | 0.101 | 0.284 |
| 404 | site12 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.004 | 0.090 | 186 | 0.093 | 0.964 |
| 406 | site04 | smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.227 | 0.122 | 91 | 0.100 | 0.068 |
| 17 | site11 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.014 | 0.091 | 164 | -0.121 | 0.882 |
| 28 | site14 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | 0.047 | 0.074 | 216 | 0.058 | 0.524 |
| 36 | site02 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | 0.018 | 0.075 | 251 | 0.005 | 0.810 |
| 46 | site05 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.088 | 0.098 | 129 | -0.026 | 0.375 |
| 65 | site16 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.065 | 0.059 | 462 | 0.007 | 0.274 |
| 86 | site04 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.123 | 0.116 | 123 | 0.083 | 0.289 |
| 94 | site09 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | 0.052 | 0.118 | 147 | -0.036 | 0.660 |
| 104 | site19 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.127 | 0.068 | 193 | 0.048 | 0.064 |
| 115 | site03 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.011 | 0.090 | 187 | -0.060 | 0.903 |
| 123 | site08 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | 0.052 | 0.137 | 107 | -0.111 | 0.708 |
| 1310 | site07 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.175 | 0.111 | 125 | 0.129 | 0.117 |
| 159 | site01 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.143 | 0.137 | 126 | 0.024 | 0.298 |
| 1610 | site15 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.184 | 0.096 | 155 | -0.026 | 0.058 |
| 188 | site06 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | 0.090 | 0.077 | 221 | 0.023 | 0.245 |
| 1910 | site18 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.034 | 0.093 | 139 | 0.049 | 0.716 |
| 208 | site21 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | 0.031 | 0.083 | 196 | 0.139 | 0.708 |
| 2110 | site13 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.113 | 0.086 | 178 | 0.147 | 0.190 |
| 2210 | site20 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.162 | 0.134 | 82 | -0.001 | 0.231 |
| 237 | site20 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.058 | 0.085 | 189 | 0.013 | 0.498 |
| 249 | site10 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | 0.084 | 0.089 | 178 | 0.061 | 0.344 |
| 2510 | site17 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.183 | 0.090 | 195 | 0.024 | 0.044 |
| 278 | site12 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.021 | 0.094 | 186 | 0.013 | 0.823 |
| 297 | site04 | smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | 0.056 | 0.143 | 91 | -0.226 | 0.700 |
| 307 | site11 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.148 | 0.085 | 164 | 0.023 | 0.084 |
| 318 | site14 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.013 | 0.077 | 216 | 0.002 | 0.867 |
| 326 | site02 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.156 | 0.075 | 251 | 0.055 | 0.038 |
| 336 | site05 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.024 | 0.096 | 129 | -0.009 | 0.801 |
| 355 | site16 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.152 | 0.058 | 462 | 0.045 | 0.009 |
| 376 | site04 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.114 | 0.117 | 123 | 0.063 | 0.332 |
| 384 | site09 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.124 | 0.116 | 147 | 0.001 | 0.287 |
| 394 | site19 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.042 | 0.071 | 193 | 0.163 | 0.556 |
| 405 | site03 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.084 | 0.084 | 187 | 0.130 | 0.323 |
| 413 | site08 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.144 | 0.147 | 107 | -0.104 | 0.331 |
| 4210 | site07 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.083 | 0.101 | 125 | 0.160 | 0.416 |
| 449 | site01 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.044 | 0.128 | 126 | 0.156 | 0.731 |
| 4510 | site15 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.200 | 0.093 | 155 | 0.040 | 0.033 |
| 478 | site06 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.112 | 0.077 | 221 | 0.029 | 0.149 |
| 4810 | site18 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.028 | 0.098 | 139 | 0.029 | 0.771 |
| 498 | site21 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.095 | 0.083 | 196 | 0.074 | 0.258 |
| 5010 | site13 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.078 | 0.091 | 178 | 0.032 | 0.391 |
| 5110 | site20 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.111 | 0.119 | 82 | 0.194 | 0.356 |
| 527 | site20 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.056 | 0.079 | 189 | 0.084 | 0.474 |
| 539 | site10 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.175 | 0.079 | 178 | -0.045 | 0.029 |
| 5410 | site17 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.072 | 0.090 | 195 | 0.024 | 0.424 |
| 568 | site12 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.089 | 0.091 | 186 | 0.085 | 0.329 |
| 582 | site04 | smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | -0.099 | 0.126 | 91 | 0.045 | 0.432 |
| 592 | site11 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.080 | 0.085 | 164 | 0.019 | 0.349 |
| 602 | site14 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.088 | 0.072 | 216 | -0.009 | 0.226 |
| 612 | site02 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.072 | 0.079 | 251 | -0.002 | 0.364 |
| 622 | site05 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.168 | 0.096 | 129 | -0.008 | 0.084 |
| 642 | site16 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.067 | 0.059 | 462 | 0.021 | 0.255 |
| 662 | site04 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.089 | 0.125 | 123 | -0.073 | 0.477 |
| 672 | site09 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.127 | 0.109 | 147 | -0.024 | 0.244 |
| 682 | site19 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.027 | 0.079 | 193 | 0.017 | 0.730 |
| 692 | site03 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.102 | 0.091 | 187 | -0.019 | 0.267 |
| 702 | site08 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.026 | 0.132 | 107 | 0.116 | 0.843 |
| 712 | site07 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.217 | 0.096 | 125 | 0.190 | 0.025 |
| 732 | site01 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.003 | 0.139 | 126 | -0.010 | 0.983 |
| 742 | site15 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.103 | 0.095 | 155 | -0.003 | 0.282 |
| 762 | site06 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.221 | 0.076 | 221 | 0.050 | 0.004 |
| 772 | site18 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.221 | 0.098 | 139 | 0.028 | 0.027 |
| 782 | site21 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.002 | 0.091 | 196 | -0.018 | 0.981 |
| 792 | site13 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.054 | 0.092 | 178 | -0.009 | 0.559 |
| 802 | site20 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.031 | 0.138 | 82 | -0.065 | 0.825 |
| 812 | site20 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.118 | 0.084 | 189 | 0.071 | 0.163 |
| 822 | site10 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.084 | 0.089 | 178 | 0.050 | 0.349 |
| 832 | site17 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.152 | 0.090 | 195 | 0.035 | 0.091 |
| 852 | site12 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.078 | 0.096 | 186 | -0.027 | 0.421 |
| 872 | site04 | smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.117 | 0.117 | 91 | 0.184 | 0.322 |
| 882 | site11 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.090 | 0.086 | 164 | -0.018 | 0.299 |
| 892 | site14 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.001 | 0.071 | 216 | 0.063 | 0.989 |
| 902 | site02 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.054 | 0.073 | 251 | 0.038 | 0.460 |
| 912 | site05 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.023 | 0.099 | 129 | -0.042 | 0.815 |
| 932 | site16 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.017 | 0.059 | 462 | 0.014 | 0.780 |
| 952 | site04 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.084 | 0.117 | 123 | 0.038 | 0.474 |
| 962 | site09 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | -0.046 | 0.109 | 147 | 0.117 | 0.675 |
| 972 | site19 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.097 | 0.069 | 193 | 0.140 | 0.164 |
| 982 | site03 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.007 | 0.091 | 187 | -0.016 | 0.943 |
| 992 | site08 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.101 | 0.132 | 107 | 0.080 | 0.446 |
| 1002 | site07 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.251 | 0.107 | 125 | -0.001 | 0.020 |
| 1022 | site01 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.022 | 0.141 | 126 | -0.050 | 0.874 |
| 1032 | site15 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.107 | 0.096 | 155 | -0.024 | 0.267 |
| 1052 | site06 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | -0.021 | 0.078 | 221 | 0.006 | 0.784 |
| 1062 | site18 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.083 | 0.089 | 139 | -0.058 | 0.356 |
| 1072 | site21 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.059 | 0.089 | 196 | 0.012 | 0.505 |
| 1082 | site13 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | -0.137 | 0.090 | 178 | 0.057 | 0.132 |
| 1092 | site20 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | -0.083 | 0.109 | 82 | 0.337 | 0.448 |
| 1102 | site20 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.038 | 0.088 | 189 | -0.017 | 0.662 |
| 1112 | site10 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.025 | 0.088 | 178 | -0.017 | 0.779 |
| 1122 | site17 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.080 | 0.090 | 195 | 0.012 | 0.376 |
| 1142 | site12 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.082 | 0.093 | 186 | 0.053 | 0.376 |
| 1162 | site04 | smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | -0.102 | 0.121 | 91 | 0.137 | 0.402 |
| 1172 | site11 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.027 | 0.088 | 164 | -0.053 | 0.760 |
| 1182 | site14 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.183 | 0.073 | 216 | 0.044 | 0.013 |
| 1192 | site02 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.028 | 0.075 | 251 | 0.064 | 0.705 |
| 1202 | site05 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.034 | 0.101 | 129 | -0.138 | 0.739 |
| 1222 | site16 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.000 | 0.060 | 462 | -0.016 | 0.999 |
| 1242 | site04 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.047 | 0.127 | 123 | -0.112 | 0.716 |
| 1252 | site09 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.091 | 0.120 | 147 | -0.072 | 0.452 |
| 1262 | site19 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.228 | 0.074 | 193 | 0.103 | 0.002 |
| 1272 | site03 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.089 | 0.092 | 187 | -0.045 | 0.338 |
| 1282 | site08 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.030 | 0.142 | 107 | -0.030 | 0.833 |
| 1292 | site07 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.207 | 0.118 | 125 | -0.087 | 0.084 |
| 1312 | site01 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.047 | 0.136 | 126 | 0.026 | 0.729 |
| 1322 | site15 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.148 | 0.090 | 155 | 0.064 | 0.104 |
| 1342 | site06 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.011 | 0.078 | 221 | -0.006 | 0.884 |
| 1352 | site18 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.065 | 0.092 | 139 | -0.013 | 0.485 |
| 1362 | site21 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.060 | 0.089 | 196 | -0.012 | 0.503 |
| 1372 | site13 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.099 | 0.091 | 178 | 0.027 | 0.279 |
| 1382 | site20 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.132 | 0.136 | 82 | -0.049 | 0.339 |
| 1392 | site20 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.044 | 0.084 | 189 | 0.037 | 0.604 |
| 1402 | site10 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.016 | 0.086 | 178 | -0.023 | 0.854 |
| 1412 | site17 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.027 | 0.090 | 195 | 0.028 | 0.762 |
| 1432 | site12 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.231 | 0.092 | 186 | 0.069 | 0.013 |
| 1452 | site04 | smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.210 | 0.131 | 91 | -0.028 | 0.115 |
| 1462 | site11 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.058 | 0.083 | 164 | 0.034 | 0.481 |
| 1472 | site14 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.101 | 0.072 | 216 | -0.055 | 0.163 |
| 1482 | site02 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.048 | 0.072 | 251 | 0.104 | 0.503 |
| 1492 | site05 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.090 | 0.097 | 129 | -0.008 | 0.357 |
| 1512 | site16 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.066 | 0.060 | 462 | 0.001 | 0.271 |
| 1532 | site04 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.079 | 0.116 | 123 | 0.078 | 0.500 |
| 1542 | site09 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.070 | 0.110 | 147 | -0.042 | 0.523 |
| 1552 | site19 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.011 | 0.079 | 193 | -0.004 | 0.890 |
| 1562 | site03 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.110 | 0.091 | 187 | -0.004 | 0.227 |
| 1572 | site08 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.033 | 0.143 | 107 | -0.050 | 0.815 |
| 1582 | site07 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.151 | 0.112 | 125 | 0.108 | 0.180 |
| 1602 | site01 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.028 | 0.136 | 126 | 0.022 | 0.840 |
| 1612 | site15 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.129 | 0.092 | 155 | 0.024 | 0.163 |
| 1632 | site06 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.184 | 0.073 | 221 | 0.123 | 0.012 |
| 1642 | site18 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.010 | 0.102 | 139 | -0.033 | 0.924 |
| 1652 | site21 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.142 | 0.090 | 196 | -0.013 | 0.116 |
| 1662 | site13 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.122 | 0.093 | 178 | -0.005 | 0.192 |
| 1672 | site20 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.178 | 0.123 | 82 | 0.116 | 0.152 |
| 1682 | site20 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.216 | 0.083 | 189 | 0.083 | 0.010 |
| 1692 | site10 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.188 | 0.092 | 178 | -0.024 | 0.042 |
| 1702 | site17 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.022 | 0.086 | 195 | 0.100 | 0.798 |
| 1722 | site12 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.072 | 0.095 | 186 | 0.016 | 0.450 |
| 1742 | site04 | smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.178 | 0.133 | 91 | -0.073 | 0.186 |
| 1752 | site11 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.148 | 0.088 | 164 | -0.072 | 0.094 |
| 1762 | site14 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.081 | 0.076 | 216 | 0.041 | 0.284 |
| 1772 | site02 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.045 | 0.074 | 251 | 0.043 | 0.544 |
| 1782 | site05 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.104 | 0.094 | 129 | 0.006 | 0.270 |
| 1802 | site16 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.028 | 0.060 | 462 | -0.023 | 0.643 |
| 1822 | site04 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.079 | 0.123 | 123 | -0.035 | 0.520 |
| 1832 | site09 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.002 | 0.113 | 147 | 0.045 | 0.984 |
| 1842 | site19 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.102 | 0.077 | 193 | 0.055 | 0.187 |
| 1852 | site03 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | -0.089 | 0.092 | 187 | -0.020 | 0.331 |
| 1862 | site08 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | -0.022 | 0.137 | 107 | 0.027 | 0.872 |
| 1872 | site07 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.189 | 0.122 | 125 | -0.055 | 0.124 |
| 1892 | site01 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.167 | 0.135 | 126 | 0.046 | 0.220 |
| 1902 | site15 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.082 | 0.093 | 155 | 0.025 | 0.379 |
| 1922 | site06 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.093 | 0.078 | 221 | -0.001 | 0.237 |
| 1932 | site18 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.178 | 0.101 | 139 | -0.021 | 0.081 |
| 1942 | site21 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | -0.053 | 0.089 | 196 | -0.017 | 0.557 |
| 1952 | site13 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.065 | 0.092 | 178 | -0.006 | 0.481 |
| 1962 | site20 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | -0.005 | 0.130 | 82 | -0.001 | 0.970 |
| 1972 | site20 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.147 | 0.087 | 189 | -0.007 | 0.093 |
| 1982 | site10 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | -0.168 | 0.089 | 178 | 0.060 | 0.061 |
| 1992 | site17 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.021 | 0.090 | 195 | 0.018 | 0.819 |
| 2012 | site12 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | -0.137 | 0.098 | 186 | -0.063 | 0.164 |
| 2032 | site04 | smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.151 | 0.122 | 91 | 0.137 | 0.220 |
| 2041 | site11 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.017 | 0.083 | 164 | 0.058 | 0.843 |
| 2051 | site14 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.036 | 0.077 | 216 | 0.010 | 0.644 |
| 2061 | site02 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.174 | 0.075 | 251 | 0.102 | 0.021 |
| 2071 | site05 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.191 | 0.095 | 129 | 0.033 | 0.048 |
| 2091 | site16 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.036 | 0.059 | 462 | 0.016 | 0.538 |
| 2111 | site04 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.060 | 0.121 | 123 | -0.006 | 0.623 |
| 2121 | site09 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.048 | 0.111 | 147 | 0.066 | 0.667 |
| 2131 | site19 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.018 | 0.078 | 193 | -0.038 | 0.821 |
| 2141 | site03 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.100 | 0.089 | 187 | 0.027 | 0.266 |
| 2151 | site08 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.029 | 0.142 | 107 | -0.037 | 0.841 |
| 2161 | site07 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.251 | 0.102 | 125 | 0.238 | 0.015 |
| 2181 | site01 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.122 | 0.125 | 126 | 0.164 | 0.333 |
| 2191 | site15 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.080 | 0.095 | 155 | 0.004 | 0.399 |
| 2211 | site06 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.090 | 0.077 | 221 | 0.020 | 0.248 |
| 2221 | site18 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.051 | 0.096 | 139 | 0.068 | 0.601 |
| 2231 | site21 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.096 | 0.089 | 196 | 0.005 | 0.281 |
| 2241 | site13 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.109 | 0.093 | 178 | -0.029 | 0.245 |
| 2251 | site20 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.109 | 0.121 | 82 | 0.168 | 0.374 |
| 2261 | site20 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.005 | 0.086 | 189 | 0.028 | 0.957 |
| 2271 | site10 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.053 | 0.092 | 178 | 0.003 | 0.566 |
| 2281 | site17 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.067 | 0.092 | 195 | -0.020 | 0.469 |
| 2301 | site12 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.207 | 0.097 | 186 | -0.019 | 0.034 |
| 2321 | site04 | smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.073 | 0.127 | 91 | -0.018 | 0.570 |
| 2331 | site11 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.013 | 0.079 | 164 | 0.076 | 0.868 |
| 2341 | site14 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.202 | 0.072 | 216 | 0.121 | 0.005 |
| 2351 | site02 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.158 | 0.071 | 251 | 0.148 | 0.027 |
| 2361 | site05 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.291 | 0.085 | 129 | 0.219 | 0.001 |
| 2381 | site16 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.037 | 0.059 | 462 | 0.029 | 0.528 |
| 2401 | site04 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | 0.102 | 0.108 | 123 | 0.198 | 0.348 |
| 2411 | site09 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.115 | 0.113 | 147 | -0.024 | 0.313 |
| 2421 | site19 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | 0.001 | 0.078 | 193 | 0.023 | 0.995 |
| 2431 | site03 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.197 | 0.087 | 187 | 0.075 | 0.024 |
| 2441 | site08 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | 0.008 | 0.142 | 107 | -0.039 | 0.955 |
| 2451 | site07 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.117 | 0.113 | 125 | 0.064 | 0.305 |
| 2471 | site01 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.085 | 0.138 | 126 | -0.047 | 0.539 |
| 2481 | site15 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | 0.005 | 0.093 | 155 | 0.042 | 0.953 |
| 2501 | site06 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.064 | 0.077 | 221 | 0.025 | 0.408 |
| 2511 | site18 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.035 | 0.098 | 139 | 0.041 | 0.718 |
| 2521 | site21 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.067 | 0.087 | 196 | 0.026 | 0.446 |
| 2531 | site13 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.055 | 0.086 | 178 | 0.122 | 0.528 |
| 2541 | site20 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | 0.128 | 0.124 | 82 | 0.135 | 0.307 |
| 2551 | site20 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.094 | 0.080 | 189 | 0.153 | 0.239 |
| 2561 | site10 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.055 | 0.090 | 178 | 0.013 | 0.544 |
| 2571 | site17 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | 0.147 | 0.087 | 195 | 0.078 | 0.096 |
| 2591 | site12 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | 0.036 | 0.084 | 186 | 0.211 | 0.670 |
| 2611 | site04 | smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.132 | 91 | -0.037 | 0.716 |
| 2621 | site11 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.109 | 0.084 | 164 | 0.043 | 0.195 |
| 2631 | site14 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.156 | 0.074 | 216 | 0.067 | 0.035 |
| 2641 | site02 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.023 | 0.077 | 251 | 0.041 | 0.770 |
| 2651 | site05 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.056 | 0.091 | 129 | 0.109 | 0.543 |
| 2671 | site16 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.057 | 0.059 | 462 | 0.004 | 0.333 |
| 2691 | site04 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.075 | 0.112 | 123 | -0.056 | 0.505 |
| 2701 | site09 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.085 | 0.119 | 147 | -0.056 | 0.477 |
| 2711 | site19 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.080 | 0.077 | 193 | 0.027 | 0.296 |
| 2721 | site03 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.143 | 0.088 | 187 | 0.043 | 0.104 |
| 2731 | site08 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.135 | 0.142 | 107 | -0.034 | 0.345 |
| 2741 | site07 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.111 | 0.113 | 125 | 0.056 | 0.332 |
| 2761 | site01 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.201 | 0.138 | 126 | 0.017 | 0.146 |
| 2771 | site15 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.037 | 0.092 | 155 | 0.054 | 0.688 |
| 2791 | site06 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.092 | 0.079 | 221 | -0.023 | 0.249 |
| 2801 | site18 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.157 | 0.092 | 139 | 0.145 | 0.092 |
| 2811 | site21 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.086 | 0.082 | 196 | 0.151 | 0.296 |
| 2821 | site13 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.004 | 0.091 | 178 | 0.011 | 0.961 |
| 2831 | site20 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.282 | 0.132 | 82 | 0.003 | 0.037 |
| 2841 | site20 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.001 | 0.087 | 189 | -0.002 | 0.995 |
| 2851 | site10 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.107 | 0.090 | 178 | 0.031 | 0.236 |
| 2861 | site17 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.001 | 0.088 | 195 | 0.064 | 0.993 |
| 2881 | site12 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | 0.156 | 0.093 | 186 | 0.057 | 0.095 |
| 2901 | site04 | smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.113 | 0.133 | 91 | -0.055 | 0.397 |
| 2911 | site11 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.003 | 0.085 | 164 | -0.007 | 0.969 |
| 2921 | site14 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.115 | 0.073 | 216 | 0.085 | 0.117 |
| 2931 | site02 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.116 | 0.077 | 251 | 0.017 | 0.133 |
| 2941 | site05 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.234 | 0.093 | 129 | 0.066 | 0.014 |
| 2961 | site16 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.064 | 0.060 | 462 | 0.001 | 0.284 |
| 2981 | site04 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.112 | 0.115 | 123 | 0.054 | 0.334 |
| 2991 | site09 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.170 | 0.116 | 147 | -0.008 | 0.145 |
| 3001 | site19 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.074 | 0.067 | 193 | 0.204 | 0.271 |
| 3011 | site03 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.081 | 0.086 | 187 | 0.091 | 0.352 |
| 3021 | site08 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.267 | 0.143 | 107 | -0.047 | 0.065 |
| 3031 | site07 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.049 | 0.115 | 125 | 0.048 | 0.669 |
| 3051 | site01 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.357 | 0.130 | 126 | -0.036 | 0.007 |
| 3061 | site15 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.161 | 0.084 | 155 | 0.188 | 0.056 |
| 3081 | site06 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.082 | 0.077 | 221 | 0.037 | 0.286 |
| 3091 | site18 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.045 | 0.094 | 139 | 0.085 | 0.635 |
| 3101 | site21 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.039 | 0.089 | 196 | 0.026 | 0.657 |
| 3111 | site13 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.040 | 0.090 | 178 | 0.042 | 0.660 |
| 3121 | site20 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.249 | 0.119 | 82 | 0.211 | 0.041 |
| 3131 | site20 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.049 | 0.077 | 189 | 0.208 | 0.524 |
| 3141 | site10 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.085 | 178 | -0.018 | 0.572 |
| 3151 | site17 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.005 | 0.090 | 195 | 0.019 | 0.957 |
| 3171 | site12 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.014 | 0.088 | 186 | 0.145 | 0.873 |
| 3191 | site04 | smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.177 | 0.128 | 91 | 0.015 | 0.170 |
| 3201 | site11 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.064 | 0.083 | 164 | 0.014 | 0.445 |
| 3211 | site14 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.012 | 0.072 | 216 | 0.029 | 0.871 |
| 3221 | site02 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.083 | 0.070 | 251 | 0.029 | 0.239 |
| 3231 | site05 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.044 | 0.095 | 129 | 0.040 | 0.642 |
| 3251 | site16 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.050 | 0.060 | 462 | -0.007 | 0.406 |
| 3271 | site04 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.015 | 0.119 | 123 | 0.027 | 0.903 |
| 3281 | site09 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.038 | 0.112 | 147 | -0.053 | 0.733 |
| 3291 | site19 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.106 | 0.078 | 193 | 0.004 | 0.177 |
| 3301 | site03 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.021 | 0.087 | 187 | -0.003 | 0.811 |
| 3311 | site08 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.046 | 0.144 | 107 | -0.082 | 0.748 |
| 3321 | site07 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.042 | 0.115 | 125 | 0.015 | 0.718 |
| 3341 | site01 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.040 | 0.135 | 126 | 0.001 | 0.765 |
| 3351 | site15 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.117 | 0.093 | 155 | 0.029 | 0.210 |
| 3371 | site06 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.083 | 0.077 | 221 | 0.024 | 0.278 |
| 3381 | site18 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.167 | 0.089 | 139 | 0.121 | 0.062 |
| 3391 | site21 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.034 | 0.090 | 196 | -0.018 | 0.711 |
| 3401 | site13 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.198 | 0.086 | 178 | 0.128 | 0.023 |
| 3411 | site20 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.002 | 0.128 | 82 | 0.093 | 0.986 |
| 3421 | site20 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | 0.010 | 0.085 | 189 | 0.002 | 0.908 |
| 3431 | site10 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.087 | 0.090 | 178 | 0.038 | 0.334 |
| 3441 | site17 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.145 | 0.089 | 195 | 0.042 | 0.105 |
| 3461 | site12 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.031 | 0.096 | 186 | -0.021 | 0.744 |
| 3481 | site04 | smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.075 | 0.134 | 91 | -0.043 | 0.579 |
| 3491 | site11 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.053 | 0.085 | 164 | -0.016 | 0.533 |
| 3501 | site14 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.127 | 0.078 | 216 | -0.028 | 0.106 |
| 3511 | site02 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.125 | 0.076 | 251 | 0.017 | 0.103 |
| 3521 | site05 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.032 | 0.090 | 129 | 0.118 | 0.726 |
| 3541 | site16 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.094 | 0.059 | 462 | 0.020 | 0.112 |
| 3561 | site04 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.061 | 0.119 | 123 | 0.024 | 0.609 |
| 3571 | site09 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.020 | 0.111 | 147 | 0.078 | 0.856 |
| 3581 | site19 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.053 | 0.073 | 193 | 0.149 | 0.464 |
| 3591 | site03 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.144 | 0.086 | 187 | 0.105 | 0.095 |
| 3601 | site08 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.041 | 0.148 | 107 | -0.113 | 0.784 |
| 3611 | site07 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.085 | 0.116 | 125 | 0.031 | 0.469 |
| 3631 | site01 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.019 | 0.135 | 126 | 0.061 | 0.887 |
| 3641 | site15 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.129 | 0.088 | 155 | 0.128 | 0.144 |
| 3661 | site06 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.071 | 0.078 | 221 | 0.007 | 0.365 |
| 3671 | site18 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.071 | 0.095 | 139 | 0.083 | 0.460 |
| 3681 | site21 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.019 | 0.086 | 196 | 0.089 | 0.828 |
| 3691 | site13 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | -0.019 | 0.090 | 178 | 0.064 | 0.834 |
| 3701 | site20 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.067 | 0.127 | 82 | 0.096 | 0.601 |
| 3711 | site20 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.123 | 0.083 | 189 | 0.094 | 0.139 |
| 3721 | site10 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.193 | 0.084 | 178 | 0.042 | 0.023 |
| 3731 | site17 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.026 | 0.090 | 195 | 0.013 | 0.773 |
| 3751 | site12 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.076 | 0.090 | 186 | 0.098 | 0.399 |
| 3771 | site04 | smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.090 | 0.116 | 91 | 0.193 | 0.438 |
| 3781 | site11 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.120 | 0.082 | 164 | 0.081 | 0.147 |
| 3791 | site14 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.037 | 0.074 | 216 | 0.047 | 0.621 |
| 3801 | site02 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.060 | 0.077 | 251 | 0.054 | 0.437 |
| 3811 | site05 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.092 | 0.094 | 129 | 0.057 | 0.331 |
| 3831 | site16 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.007 | 0.060 | 462 | -0.008 | 0.908 |
| 3851 | site04 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.107 | 0.119 | 123 | 0.038 | 0.367 |
| 3861 | site09 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.093 | 0.118 | 147 | -0.029 | 0.429 |
| 3871 | site19 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.039 | 0.074 | 193 | 0.050 | 0.596 |
| 3881 | site03 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.041 | 0.092 | 187 | -0.058 | 0.656 |
| 3891 | site08 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.023 | 0.144 | 107 | -0.057 | 0.872 |
| 3901 | site07 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.299 | 0.112 | 125 | 0.039 | 0.009 |
| 3921 | site01 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.116 | 0.137 | 126 | -0.047 | 0.398 |
| 3931 | site15 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.127 | 0.093 | 155 | 0.041 | 0.173 |
| 3951 | site06 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.042 | 0.079 | 221 | -0.012 | 0.597 |
| 3961 | site18 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.213 | 0.100 | 139 | -0.008 | 0.036 |
| 3971 | site21 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.143 | 0.087 | 196 | 0.030 | 0.104 |
| 3981 | site13 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.065 | 0.090 | 178 | 0.050 | 0.476 |
| 3991 | site20 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.051 | 0.130 | 82 | -0.086 | 0.698 |
| 4001 | site20 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.104 | 0.087 | 189 | 0.002 | 0.232 |
| 4011 | site10 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.067 | 0.093 | 178 | -0.022 | 0.474 |
| 4021 | site17 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.211 | 0.091 | 195 | -0.010 | 0.022 |
| 4041 | site12 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.069 | 0.097 | 186 | -0.047 | 0.475 |
| 4061 | site04 | smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.091 | 0.126 | 91 | 0.047 | 0.473 |
| 407 | site11 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.077 | 0.082 | 164 | 0.076 | 0.353 |
| 408 | site14 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.071 | 0.074 | 216 | 0.051 | 0.336 |
| 409 | site02 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.128 | 0.077 | 251 | 0.034 | 0.097 |
| 410 | site05 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | -0.036 | 0.099 | 129 | -0.039 | 0.714 |
| 412 | site16 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.068 | 0.060 | 462 | 0.003 | 0.256 |
| 414 | site04 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | -0.056 | 0.121 | 123 | -0.010 | 0.645 |
| 415 | site09 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | -0.045 | 0.111 | 147 | 0.041 | 0.688 |
| 416 | site19 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | -0.021 | 0.076 | 193 | 0.004 | 0.783 |
| 417 | site03 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.205 | 0.086 | 187 | 0.095 | 0.018 |
| 418 | site08 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.050 | 0.142 | 107 | -0.026 | 0.726 |
| 419 | site07 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.019 | 0.115 | 125 | -0.058 | 0.868 |
| 421 | site01 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.008 | 0.140 | 126 | -0.035 | 0.956 |
| 422 | site15 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.028 | 0.095 | 155 | -0.003 | 0.767 |
| 424 | site06 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.025 | 0.076 | 221 | 0.056 | 0.739 |
| 425 | site18 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.088 | 0.099 | 139 | 0.025 | 0.376 |
| 426 | site21 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.048 | 0.088 | 196 | 0.022 | 0.588 |
| 427 | site13 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | -0.136 | 0.091 | 178 | 0.037 | 0.139 |
| 428 | site20 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.032 | 0.127 | 82 | 0.084 | 0.804 |
| 429 | site20 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.066 | 0.084 | 189 | 0.065 | 0.433 |
| 430 | site10 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.093 | 0.088 | 178 | 0.002 | 0.295 |
| 431 | site17 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | -0.050 | 0.091 | 195 | -0.012 | 0.585 |
| 433 | site12 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.041 | 0.094 | 186 | 0.010 | 0.668 |
| 435 | site04 | smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.006 | 0.131 | 91 | -0.032 | 0.962 |
| 436 | site11 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.075 | 0.083 | 164 | 0.020 | 0.368 |
| 437 | site14 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.049 | 0.078 | 216 | -0.027 | 0.533 |
| 438 | site02 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.070 | 0.077 | 251 | 0.057 | 0.365 |
| 439 | site05 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.009 | 0.100 | 129 | -0.072 | 0.928 |
| 441 | site16 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.020 | 0.060 | 462 | -0.008 | 0.743 |
| 443 | site04 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.053 | 0.117 | 123 | 0.021 | 0.651 |
| 444 | site09 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.104 | 0.118 | 147 | -0.037 | 0.381 |
| 445 | site19 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.108 | 0.077 | 193 | 0.016 | 0.164 |
| 446 | site03 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.088 | 0.092 | 187 | -0.020 | 0.335 |
| 447 | site08 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.262 | 0.130 | 107 | 0.143 | 0.046 |
| 448 | site07 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.188 | 0.117 | 125 | -0.019 | 0.112 |
| 450 | site01 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.336 | 0.127 | 126 | 0.135 | 0.009 |
| 451 | site15 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.102 | 0.095 | 155 | -0.012 | 0.286 |
| 453 | site06 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.030 | 0.077 | 221 | -0.022 | 0.702 |
| 454 | site18 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.114 | 0.098 | 139 | 0.026 | 0.248 |
| 455 | site21 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.079 | 0.087 | 196 | 0.054 | 0.367 |
| 456 | site13 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.099 | 0.091 | 178 | 0.022 | 0.281 |
| 457 | site20 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.018 | 0.130 | 82 | 0.045 | 0.890 |
| 458 | site20 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.055 | 0.086 | 189 | 0.034 | 0.521 |
| 459 | site10 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.139 | 0.088 | 178 | 0.077 | 0.116 |
| 460 | site17 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.223 | 0.087 | 195 | 0.086 | 0.011 |
| 462 | site12 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.154 | 0.095 | 186 | -0.007 | 0.107 |
| 464 | site04 | smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.062 | 0.128 | 91 | 0.017 | 0.627 |
| 465 | site11 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.005 | 0.084 | 164 | 0.005 | 0.955 |
| 466 | site14 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.022 | 0.076 | 216 | -0.027 | 0.772 |
| 467 | site02 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.075 | 0.074 | 251 | 0.033 | 0.311 |
| 468 | site05 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.218 | 0.090 | 129 | 0.144 | 0.017 |
| 470 | site16 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.076 | 0.060 | 462 | 0.000 | 0.203 |
| 472 | site04 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.103 | 0.115 | 123 | 0.034 | 0.373 |
| 473 | site09 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.312 | 0.117 | 147 | -0.018 | 0.009 |
| 474 | site19 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.174 | 0.077 | 193 | -0.020 | 0.025 |
| 475 | site03 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.091 | 0.086 | 187 | 0.072 | 0.294 |
| 476 | site08 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.065 | 0.134 | 107 | 0.081 | 0.627 |
| 477 | site07 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.215 | 0.113 | 125 | 0.051 | 0.061 |
| 479 | site01 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.103 | 0.127 | 126 | 0.158 | 0.420 |
| 480 | site15 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.162 | 0.094 | 155 | 0.013 | 0.089 |
| 482 | site06 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.114 | 0.075 | 221 | 0.060 | 0.131 |
| 483 | site18 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.086 | 0.102 | 139 | -0.039 | 0.401 |
| 484 | site21 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.039 | 0.085 | 196 | 0.047 | 0.650 |
| 485 | site13 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.018 | 0.090 | 178 | -0.012 | 0.842 |
| 486 | site20 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.147 | 0.116 | 82 | 0.253 | 0.211 |
| 487 | site20 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.039 | 0.085 | 189 | 0.028 | 0.650 |
| 488 | site10 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.058 | 0.090 | 178 | 0.033 | 0.520 |
| 489 | site17 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.119 | 0.090 | 195 | 0.004 | 0.188 |
| 491 | site12 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.057 | 0.092 | 186 | 0.054 | 0.540 |
| 493 | site04 | smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.268 | 0.130 | 91 | 0.005 | 0.044 |
| 494 | site11 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.098 | 0.085 | 164 | 0.007 | 0.254 |
| 495 | site14 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.026 | 0.075 | 216 | -0.024 | 0.733 |
| 496 | site02 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.048 | 0.078 | 251 | 0.032 | 0.538 |
| 497 | site05 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.175 | 0.094 | 129 | 0.052 | 0.067 |
| 499 | site16 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.001 | 0.058 | 462 | 0.033 | 0.992 |
| 501 | site04 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.216 | 0.107 | 123 | -0.047 | 0.047 |
| 502 | site09 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.011 | 0.116 | 147 | -0.006 | 0.927 |
| 503 | site19 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.151 | 0.077 | 193 | -0.002 | 0.052 |
| 504 | site03 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.263 | 0.088 | 187 | 0.050 | 0.003 |
| 505 | site08 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.099 | 0.143 | 107 | -0.046 | 0.490 |
| 506 | site07 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.007 | 0.115 | 125 | 0.054 | 0.953 |
| 508 | site01 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.078 | 0.138 | 126 | 0.014 | 0.574 |
| 509 | site15 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.032 | 0.095 | 155 | -0.061 | 0.735 |
| 511 | site06 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.013 | 0.078 | 221 | -0.020 | 0.870 |
| 512 | site18 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.099 | 0.104 | 139 | -0.080 | 0.341 |
| 513 | site21 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.203 | 0.086 | 196 | 0.075 | 0.020 |
| 514 | site13 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.007 | 0.094 | 178 | -0.034 | 0.939 |
| 515 | site20 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.103 | 0.134 | 82 | -0.014 | 0.445 |
| 516 | site20 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.210 | 0.081 | 189 | 0.120 | 0.011 |
| 517 | site10 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.081 | 0.091 | 178 | 0.020 | 0.371 |
| 518 | site17 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.059 | 0.092 | 195 | -0.017 | 0.523 |
| 520 | site12 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.224 | 0.094 | 186 | 0.018 | 0.019 |
| 522 | site04 | smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.015 | 0.128 | 91 | 0.016 | 0.906 |
| 523 | site11 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.016 | 0.085 | 164 | -0.032 | 0.847 |
| 524 | site14 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.230 | 0.074 | 216 | 0.082 | 0.002 |
| 525 | site02 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.073 | 0.078 | 251 | 0.013 | 0.352 |
| 526 | site05 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.071 | 0.096 | 129 | -0.046 | 0.462 |
| 528 | site16 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.039 | 0.059 | 462 | 0.017 | 0.509 |
| 530 | site04 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.036 | 0.111 | 123 | 0.155 | 0.744 |
| 531 | site09 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.263 | 0.116 | 147 | -0.021 | 0.026 |
| 532 | site19 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.138 | 0.079 | 193 | 0.002 | 0.084 |
| 533 | site03 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.109 | 0.089 | 187 | -0.005 | 0.224 |
| 534 | site08 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.074 | 0.143 | 107 | -0.045 | 0.605 |
| 535 | site07 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.039 | 0.120 | 125 | -0.054 | 0.744 |
| 537 | site01 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.090 | 0.143 | 126 | -0.058 | 0.531 |
| 538 | site15 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.208 | 0.096 | 155 | -0.027 | 0.033 |
| 540 | site06 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.046 | 0.077 | 221 | 0.021 | 0.549 |
| 541 | site18 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.157 | 0.099 | 139 | 0.018 | 0.115 |
| 542 | site21 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.090 | 0.088 | 196 | 0.012 | 0.310 |
| 543 | site13 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.014 | 0.090 | 178 | 0.044 | 0.877 |
| 544 | site20 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.280 | 0.123 | 82 | -0.025 | 0.026 |
| 545 | site20 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.065 | 0.089 | 189 | -0.060 | 0.469 |
| 546 | site10 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.020 | 0.093 | 178 | -0.019 | 0.833 |
| 547 | site17 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.053 | 0.087 | 195 | 0.092 | 0.545 |
| 549 | site12 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.007 | 0.094 | 186 | 0.026 | 0.944 |
| 551 | site04 | smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.099 | 0.132 | 91 | -0.045 | 0.455 |
| 552 | site11 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.151 | 0.082 | 164 | 0.090 | 0.066 |
| 553 | site14 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.180 | 0.068 | 216 | 0.127 | 0.009 |
| 554 | site02 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.107 | 0.073 | 251 | 0.052 | 0.147 |
| 555 | site05 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.185 | 0.095 | 129 | 0.045 | 0.054 |
| 557 | site16 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.040 | 0.057 | 462 | 0.051 | 0.485 |
| 559 | site04 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.169 | 0.103 | 123 | 0.091 | 0.103 |
| 560 | site09 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.147 | 0.115 | 147 | -0.048 | 0.206 |
| 561 | site19 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.021 | 0.074 | 193 | 0.058 | 0.772 |
| 562 | site03 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.277 | 0.090 | 187 | 0.021 | 0.002 |
| 563 | site08 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.148 | 0.143 | 107 | -0.039 | 0.303 |
| 564 | site07 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.190 | 0.112 | 125 | 0.111 | 0.093 |
| 566 | site01 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.220 | 0.132 | 126 | 0.096 | 0.099 |
| 567 | site15 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.002 | 0.089 | 155 | 0.127 | 0.982 |
| 569 | site06 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.163 | 0.075 | 221 | 0.039 | 0.031 |
| 570 | site18 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.021 | 0.099 | 139 | -0.005 | 0.828 |
| 571 | site21 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.139 | 0.089 | 196 | 0.015 | 0.118 |
| 572 | site13 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.069 | 0.087 | 178 | 0.071 | 0.433 |
| 573 | site20 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.093 | 0.127 | 82 | 0.065 | 0.465 |
| 574 | site20 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.213 | 0.083 | 189 | 0.085 | 0.011 |
| 575 | site10 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.144 | 0.088 | 178 | 0.048 | 0.102 |
| 576 | site17 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.100 | 0.087 | 195 | 0.081 | 0.253 |
| 578 | site12 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.110 | 0.088 | 186 | 0.147 | 0.213 |
| 580 | site04 | smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.063 | 0.131 | 91 | -0.013 | 0.633 |
#### Females ####
# Cortical Volume by exposure - Females
CortVol_sensiResults.F <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = CVol_outcomes,
covars = c(covars.x, "smri_vol_scs_intracranialv_z"),
Scale = TRUE,
data = abcd.f
)
CortVol_sensiResults.F$ElementDescription <-
CortVolResults.F$ElementDescription[match(CortVol_sensiResults.F$Outcome, CortVolResults.F$Outcome)]
CortVol_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
CortVol_sensiResults.F[which(CortVol_sensiResults.F$Predictor==i),]$FDR <-
p.adjust(
CortVol_sensiResults.F[CortVol_sensiResults.F$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
# Subcortical Volume by exposure - Females
SubCortVol_sensiResults.F <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = SubCortical_outcomes,
covars = c(covars.x, 'smri_vol_scs_intracranialv_z'),
Scale = TRUE,
data = abcd.f
)
SubCortVol_sensiResults.F$ElementDescription <-
SubCortVolResults.F$ElementDescription[match(SubCortVol_sensiResults.F$Outcome, SubCortVolResults.F$Outcome)]
SubCortVol_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
SubCortVol_sensiResults.F[which(SubCortVol_sensiResults.F$Predictor==i),]$FDR <-
p.adjust(
SubCortVol_sensiResults.F[SubCortVol_sensiResults.F$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
# Cortical Thickness by exposure - Females
CortThick_sensiResults.F <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = CortThick_outcomes,
covars = c(covars.x, 'smri_thick_cdk_mean_z'),
Scale = TRUE,
data = abcd.f
)
CortThick_sensiResults.F$ElementDescription <-
CortThickResults.F$ElementDescription[match(CortThick_sensiResults.F$Outcome, CortThickResults.F$Outcome)]
CortThick_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
CortThick_sensiResults.F[which(CortThick_sensiResults.F$Predictor==i),]$FDR <-
p.adjust(
CortThick_sensiResults.F[CortThick_sensiResults.F$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
# Cortical Area by exposure - Females
CortArea_sensiResults.F <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = CortArea_outcomes,
covars = c(covars.x, 'smri_area_cdk_total_z'),
Scale = TRUE,
data = abcd.f
)
CortArea_sensiResults.F$ElementDescription <-
CortAreaResults.F$ElementDescription[match(CortArea_sensiResults.F$Outcome, CortAreaResults.F$Outcome)]
CortArea_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
CortArea_sensiResults.F[which(CortArea_sensiResults.F$Predictor==i),]$FDR <-
p.adjust(
CortArea_sensiResults.F[CortArea_sensiResults.F$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
# Sulcal Depth by exposure - Females
SulcalDepth_sensiResults.F <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = SulcalDepth_outcomes,
covars = c(covars.x,'smri_sulc_cdk_mean_z'),
Scale = TRUE,
data = abcd.f
)
SulcalDepth_sensiResults.F$ElementDescription <-
SulcalDepthResults.F$ElementDescription[match(SulcalDepth_sensiResults.F$Outcome, SulcalDepthResults.F$Outcome)]
SulcalDepth_sensiResults.F$FDR <- NA
for( i in Prenatal.labels){
SulcalDepth_sensiResults.F[which(SulcalDepth_sensiResults.F$Predictor==i),]$FDR <-
p.adjust(
SulcalDepth_sensiResults.F[SulcalDepth_sensiResults.F$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
#### Males ####
# Cortical Volume by exposure - Males
CortVol_sensiResults.M <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = CVol_outcomes,
covars = c(covars.x,'smri_vol_scs_intracranialv_z'),
Scale = TRUE,
data = abcd.m
)
CortVol_sensiResults.M$ElementDescription <-
CortVolResults.M$ElementDescription[match(CortVol_sensiResults.M$Outcome, CortVolResults.M$Outcome)]
CortVol_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
CortVol_sensiResults.M[which(CortVol_sensiResults.M$Predictor==i),]$FDR <-
p.adjust(
CortVol_sensiResults.M[CortVol_sensiResults.M$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
# Subcortical Volume by exposure - Males
SubCortVol_sensiResults.M <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = SubCortical_outcomes,
covars = c(covars.x, 'smri_vol_scs_intracranialv_z'),
Scale = TRUE,
data = abcd.m
)
SubCortVol_sensiResults.M$ElementDescription <-
SubCortVolResults.M$ElementDescription[match(SubCortVol_sensiResults.M$Outcome, SubCortVolResults.M$Outcome)]
SubCortVol_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
SubCortVol_sensiResults.M[which(SubCortVol_sensiResults.M$Predictor==i),]$FDR <-
p.adjust(
SubCortVol_sensiResults.M[SubCortVol_sensiResults.M$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
# Cortical Thickness by exposure - Males
CortThick_sensiResults.M <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = CortThick_outcomes,
covars = c(covars.x, 'smri_thick_cdk_mean_z'),
Scale = TRUE,
data = abcd.m
)
CortThick_sensiResults.M$ElementDescription <-
CortThickResults.M$ElementDescription[match(CortThick_sensiResults.M$Outcome, CortThickResults.M$Outcome)]
CortThick_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
CortThick_sensiResults.M[which(CortThick_sensiResults.M$Predictor==i),]$FDR <-
p.adjust(
CortThick_sensiResults.M[CortThick_sensiResults.M$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
# Cortical Area by exposure - Males
CortArea_sensiResults.M <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = CortArea_outcomes,
covars = c(covars.x,'smri_area_cdk_total_z'),
Scale = TRUE,
data = abcd.m
)
CortArea_sensiResults.M$ElementDescription <-
CortAreaResults.M$ElementDescription[match(CortArea_sensiResults.M$Outcome, CortAreaResults.M$Outcome)]
CortArea_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
CortArea_sensiResults.M[which(CortArea_sensiResults.M$Predictor==i),]$FDR <-
p.adjust(
CortArea_sensiResults.M[CortArea_sensiResults.M$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
# Sulcal Depth by exposure - Males
SulcalDepth_sensiResults.M <-
LME_loop(
predictors = Prenatal.vars,
predictorsLab = Prenatal.labels,
outcomes = SulcalDepth_outcomes,
covars = c(covars.x,'smri_sulc_cdk_mean_z'),
Scale = TRUE,
data = abcd.m
)
SulcalDepth_sensiResults.M$ElementDescription <-
SulcalDepthResults.M$ElementDescription[match(SulcalDepth_sensiResults.M$Outcome, SulcalDepthResults.M$Outcome)]
SulcalDepth_sensiResults.M$FDR <- NA
for( i in Prenatal.labels){
SulcalDepth_sensiResults.M[which(SulcalDepth_sensiResults.M$Predictor==i),]$FDR <-
p.adjust(
SulcalDepth_sensiResults.M[SulcalDepth_sensiResults.M$Predictor==i,]$p_value_Predictor,
"fdr"
)
}
SensitivityResults.F <- rbind(CortVol_sensiResults.F,
SubCortVol_sensiResults.F,
CortThick_sensiResults.F,
CortArea_sensiResults.F,
SulcalDepth_sensiResults.F)
SensitivityResults.M <- rbind(CortVol_sensiResults.M,
SubCortVol_sensiResults.M,
CortThick_sensiResults.M,
CortArea_sensiResults.M,
SulcalDepth_sensiResults.M)
# Saving eTable7
write.xlsx(x = cbind(SensitivityResults.F[,-c(1,3)], #Omit Id and label column
SensitivityResults.M[,6:11]), #Omit repeated columns,
file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
sheetName = 'eTable7',
row.names = F,
showNA = F,
append = T
)
kable(cbind(SensitivityResults.F[,-c(1,3)], #Omit Id and label column
SensitivityResults.M[,6:11]), #Omit repeated columns
digits = 3,
caption = "eTable7 - Associations between Individual Prenatal Adverse Exposures and Brain Regions") %>%
add_header_above(c(" "=3, 'Females'=6, 'Males'=6)) %>%
kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | Unplanned pregnancy | -0.059 | 0.034 | 3917 | 0.113 | 0.085 | 0.981 | 0.034 | 0.034 | 4196 | 0.117 | 0.318 | 0.983 |
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | C-Section | -0.082 | 0.031 | 3917 | 0.115 | 0.008 | 0.089 | -0.082 | 0.030 | 4196 | 0.119 | 0.006 | 0.127 |
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | Gestational Age | -0.081 | 0.043 | 3917 | 0.115 | 0.057 | 0.143 | -0.077 | 0.040 | 4196 | 0.119 | 0.056 | 0.103 |
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | Birth weight | -0.056 | 0.041 | 3917 | 0.115 | 0.173 | 0.318 | -0.069 | 0.041 | 4196 | 0.118 | 0.091 | 0.311 |
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | Tobacco use | -0.080 | 0.047 | 3917 | 0.114 | 0.086 | 0.694 | -0.035 | 0.045 | 4196 | 0.116 | 0.440 | 0.576 |
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | Alcohol use | -0.028 | 0.033 | 3917 | 0.113 | 0.403 | 0.703 | 0.020 | 0.033 | 4196 | 0.116 | 0.553 | 0.836 |
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | Marijuana use | -0.040 | 0.066 | 3917 | 0.113 | 0.540 | 0.950 | -0.060 | 0.066 | 4196 | 0.116 | 0.361 | 0.791 |
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | Pregnancy complications | -0.005 | 0.030 | 3917 | 0.113 | 0.860 | 0.991 | 0.016 | 0.029 | 4196 | 0.116 | 0.595 | 0.809 |
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | Birth complications | -0.016 | 0.033 | 3917 | 0.113 | 0.637 | 0.991 | 0.042 | 0.031 | 4196 | 0.116 | 0.174 | 0.779 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | Unplanned pregnancy | 0.012 | 0.034 | 3917 | 0.149 | 0.723 | 0.981 | 0.045 | 0.034 | 4196 | 0.127 | 0.185 | 0.983 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | C-Section | -0.009 | 0.031 | 3917 | 0.149 | 0.778 | 0.839 | 0.034 | 0.030 | 4196 | 0.127 | 0.256 | 0.513 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | Gestational Age | 0.002 | 0.043 | 3917 | 0.149 | 0.966 | 0.969 | 0.022 | 0.041 | 4196 | 0.126 | 0.581 | 0.681 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | Birth weight | -0.008 | 0.041 | 3917 | 0.149 | 0.855 | 0.894 | 0.002 | 0.041 | 4196 | 0.126 | 0.961 | 0.961 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | Tobacco use | -0.060 | 0.047 | 3917 | 0.150 | 0.205 | 0.727 | 0.034 | 0.046 | 4196 | 0.126 | 0.465 | 0.596 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | Alcohol use | 0.072 | 0.034 | 3917 | 0.150 | 0.033 | 0.365 | 0.016 | 0.034 | 4196 | 0.126 | 0.636 | 0.898 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | Marijuana use | 0.076 | 0.066 | 3917 | 0.150 | 0.254 | 0.950 | -0.088 | 0.066 | 4196 | 0.127 | 0.183 | 0.666 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | Pregnancy complications | 0.050 | 0.030 | 3917 | 0.150 | 0.093 | 0.372 | 0.004 | 0.030 | 4196 | 0.126 | 0.883 | 0.968 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | Birth complications | -0.001 | 0.034 | 3917 | 0.149 | 0.979 | 0.991 | -0.024 | 0.032 | 4196 | 0.126 | 0.438 | 0.904 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | Unplanned pregnancy | -0.013 | 0.032 | 3917 | 0.183 | 0.679 | 0.981 | 0.001 | 0.032 | 4196 | 0.181 | 0.983 | 0.992 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | C-Section | 0.029 | 0.029 | 3917 | 0.183 | 0.314 | 0.736 | 0.017 | 0.028 | 4196 | 0.181 | 0.533 | 0.742 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | Gestational Age | -0.032 | 0.040 | 3917 | 0.184 | 0.426 | 0.567 | -0.039 | 0.038 | 4196 | 0.182 | 0.310 | 0.421 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | Birth weight | 0.028 | 0.038 | 3917 | 0.183 | 0.464 | 0.619 | 0.006 | 0.039 | 4196 | 0.181 | 0.879 | 0.961 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | Tobacco use | 0.057 | 0.044 | 3917 | 0.183 | 0.188 | 0.727 | -0.130 | 0.043 | 4196 | 0.182 | 0.003 | 0.058 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | Alcohol use | 0.065 | 0.031 | 3917 | 0.185 | 0.038 | 0.365 | -0.052 | 0.031 | 4196 | 0.181 | 0.094 | 0.524 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | Marijuana use | 0.018 | 0.061 | 3917 | 0.183 | 0.769 | 0.968 | -0.040 | 0.062 | 4196 | 0.181 | 0.522 | 0.846 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | Pregnancy complications | 0.004 | 0.028 | 3917 | 0.183 | 0.879 | 0.991 | -0.021 | 0.028 | 4196 | 0.181 | 0.457 | 0.719 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | Birth complications | -0.034 | 0.031 | 3917 | 0.184 | 0.274 | 0.991 | -0.034 | 0.029 | 4196 | 0.182 | 0.249 | 0.806 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | Unplanned pregnancy | 0.017 | 0.033 | 3917 | 0.114 | 0.618 | 0.981 | 0.035 | 0.033 | 4196 | 0.109 | 0.292 | 0.983 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | C-Section | -0.014 | 0.030 | 3917 | 0.114 | 0.652 | 0.839 | -0.023 | 0.029 | 4196 | 0.108 | 0.424 | 0.703 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | Gestational Age | -0.040 | 0.042 | 3917 | 0.114 | 0.333 | 0.510 | 0.042 | 0.040 | 4196 | 0.108 | 0.294 | 0.407 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | Birth weight | 0.130 | 0.040 | 3917 | 0.115 | 0.001 | 0.010 | 0.057 | 0.040 | 4196 | 0.108 | 0.159 | 0.450 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | Tobacco use | 0.013 | 0.045 | 3917 | 0.114 | 0.782 | 0.916 | 0.005 | 0.045 | 4196 | 0.108 | 0.908 | 0.936 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | Alcohol use | -0.047 | 0.033 | 3917 | 0.114 | 0.149 | 0.562 | 0.018 | 0.033 | 4196 | 0.108 | 0.577 | 0.846 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | Marijuana use | 0.003 | 0.064 | 3917 | 0.114 | 0.957 | 0.972 | 0.092 | 0.064 | 4196 | 0.109 | 0.153 | 0.666 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | Pregnancy complications | -0.071 | 0.029 | 3917 | 0.116 | 0.014 | 0.237 | -0.064 | 0.029 | 4196 | 0.109 | 0.026 | 0.418 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | Birth complications | -0.003 | 0.033 | 3917 | 0.114 | 0.925 | 0.991 | -0.033 | 0.031 | 4196 | 0.108 | 0.279 | 0.823 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | Unplanned pregnancy | -0.021 | 0.035 | 3917 | 0.101 | 0.544 | 0.981 | 0.017 | 0.035 | 4196 | 0.094 | 0.626 | 0.983 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | C-Section | 0.044 | 0.031 | 3917 | 0.101 | 0.157 | 0.563 | -0.009 | 0.030 | 4196 | 0.094 | 0.760 | 0.867 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | Gestational Age | 0.052 | 0.043 | 3917 | 0.101 | 0.232 | 0.415 | 0.003 | 0.041 | 4196 | 0.094 | 0.939 | 0.968 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | Birth weight | -0.014 | 0.042 | 3917 | 0.101 | 0.732 | 0.811 | 0.004 | 0.042 | 4196 | 0.094 | 0.922 | 0.961 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | Tobacco use | -0.050 | 0.048 | 3917 | 0.101 | 0.294 | 0.727 | -0.087 | 0.047 | 4196 | 0.094 | 0.064 | 0.291 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | Alcohol use | -0.041 | 0.034 | 3917 | 0.101 | 0.232 | 0.608 | -0.020 | 0.034 | 4196 | 0.094 | 0.552 | 0.836 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | Marijuana use | 0.074 | 0.067 | 3917 | 0.101 | 0.268 | 0.950 | -0.003 | 0.067 | 4196 | 0.094 | 0.962 | 0.977 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | Pregnancy complications | -0.012 | 0.030 | 3917 | 0.101 | 0.694 | 0.991 | 0.038 | 0.030 | 4196 | 0.094 | 0.208 | 0.534 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | Birth complications | -0.008 | 0.034 | 3917 | 0.101 | 0.809 | 0.991 | -0.010 | 0.032 | 4196 | 0.094 | 0.757 | 0.951 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | Unplanned pregnancy | 0.014 | 0.030 | 3917 | 0.247 | 0.634 | 0.981 | -0.033 | 0.029 | 4196 | 0.266 | 0.252 | 0.983 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | C-Section | -0.031 | 0.027 | 3917 | 0.248 | 0.253 | 0.662 | 0.000 | 0.026 | 4196 | 0.266 | 0.994 | 0.994 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | Gestational Age | -0.079 | 0.037 | 3917 | 0.249 | 0.035 | 0.099 | -0.088 | 0.035 | 4196 | 0.269 | 0.011 | 0.030 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | Birth weight | 0.076 | 0.036 | 3917 | 0.246 | 0.034 | 0.106 | 0.010 | 0.035 | 4196 | 0.266 | 0.767 | 0.915 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | Tobacco use | -0.004 | 0.041 | 3917 | 0.247 | 0.916 | 0.987 | -0.034 | 0.039 | 4196 | 0.266 | 0.384 | 0.556 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | Alcohol use | 0.032 | 0.029 | 3917 | 0.248 | 0.274 | 0.659 | 0.040 | 0.029 | 4196 | 0.267 | 0.163 | 0.524 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | Marijuana use | -0.037 | 0.058 | 3917 | 0.247 | 0.520 | 0.950 | -0.088 | 0.057 | 4196 | 0.266 | 0.118 | 0.666 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | Pregnancy complications | -0.015 | 0.026 | 3917 | 0.247 | 0.571 | 0.970 | -0.002 | 0.025 | 4196 | 0.266 | 0.934 | 0.977 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | Birth complications | -0.005 | 0.029 | 3917 | 0.247 | 0.863 | 0.991 | -0.041 | 0.027 | 4196 | 0.267 | 0.130 | 0.681 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | Unplanned pregnancy | -0.007 | 0.032 | 3917 | 0.220 | 0.825 | 0.981 | 0.035 | 0.031 | 4196 | 0.213 | 0.259 | 0.983 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | C-Section | -0.077 | 0.029 | 3917 | 0.222 | 0.007 | 0.089 | -0.065 | 0.028 | 4196 | 0.215 | 0.018 | 0.192 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | Gestational Age | -0.195 | 0.040 | 3917 | 0.228 | 0.000 | 0.000 | -0.097 | 0.037 | 4196 | 0.216 | 0.009 | 0.027 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | Birth weight | -0.115 | 0.038 | 3917 | 0.224 | 0.003 | 0.017 | -0.115 | 0.038 | 4196 | 0.217 | 0.003 | 0.029 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | Tobacco use | -0.080 | 0.043 | 3917 | 0.221 | 0.064 | 0.694 | -0.010 | 0.042 | 4196 | 0.213 | 0.821 | 0.886 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | Alcohol use | 0.062 | 0.031 | 3917 | 0.222 | 0.048 | 0.365 | 0.004 | 0.031 | 4196 | 0.213 | 0.895 | 0.951 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | Marijuana use | -0.083 | 0.061 | 3917 | 0.221 | 0.176 | 0.950 | 0.022 | 0.061 | 4196 | 0.213 | 0.715 | 0.903 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | Pregnancy complications | 0.025 | 0.028 | 3917 | 0.220 | 0.358 | 0.761 | -0.001 | 0.027 | 4196 | 0.213 | 0.958 | 0.980 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | Birth complications | -0.033 | 0.031 | 3917 | 0.221 | 0.295 | 0.991 | -0.050 | 0.029 | 4196 | 0.214 | 0.084 | 0.611 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | Unplanned pregnancy | 0.053 | 0.029 | 3917 | 0.257 | 0.074 | 0.981 | 0.025 | 0.029 | 4196 | 0.255 | 0.388 | 0.983 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | C-Section | -0.051 | 0.027 | 3917 | 0.258 | 0.053 | 0.275 | 0.004 | 0.025 | 4196 | 0.254 | 0.873 | 0.913 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | Gestational Age | -0.025 | 0.037 | 3917 | 0.257 | 0.493 | 0.599 | -0.018 | 0.035 | 4196 | 0.255 | 0.609 | 0.691 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | Birth weight | 0.032 | 0.035 | 3917 | 0.256 | 0.360 | 0.538 | -0.013 | 0.035 | 4196 | 0.254 | 0.706 | 0.857 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | Tobacco use | -0.030 | 0.040 | 3917 | 0.257 | 0.449 | 0.727 | -0.036 | 0.039 | 4196 | 0.254 | 0.353 | 0.547 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | Alcohol use | 0.057 | 0.029 | 3917 | 0.259 | 0.048 | 0.365 | 0.035 | 0.028 | 4196 | 0.255 | 0.223 | 0.561 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | Marijuana use | 0.068 | 0.057 | 3917 | 0.257 | 0.233 | 0.950 | 0.008 | 0.056 | 4196 | 0.254 | 0.888 | 0.973 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | Pregnancy complications | -0.013 | 0.026 | 3917 | 0.257 | 0.607 | 0.982 | 0.011 | 0.025 | 4196 | 0.254 | 0.649 | 0.866 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | Birth complications | -0.055 | 0.029 | 3917 | 0.258 | 0.054 | 0.991 | -0.002 | 0.027 | 4196 | 0.254 | 0.927 | 0.951 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | Unplanned pregnancy | 0.026 | 0.032 | 3917 | 0.223 | 0.417 | 0.981 | 0.039 | 0.032 | 4196 | 0.206 | 0.226 | 0.983 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | C-Section | 0.021 | 0.029 | 3917 | 0.223 | 0.477 | 0.839 | -0.039 | 0.028 | 4196 | 0.206 | 0.167 | 0.431 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | Gestational Age | -0.144 | 0.040 | 3917 | 0.227 | 0.000 | 0.003 | -0.047 | 0.038 | 4196 | 0.206 | 0.213 | 0.330 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | Birth weight | 0.042 | 0.039 | 3917 | 0.223 | 0.273 | 0.468 | -0.059 | 0.039 | 4196 | 0.207 | 0.129 | 0.397 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | Tobacco use | 0.034 | 0.044 | 3917 | 0.223 | 0.433 | 0.727 | 0.078 | 0.043 | 4196 | 0.206 | 0.070 | 0.291 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | Alcohol use | -0.012 | 0.031 | 3917 | 0.223 | 0.714 | 0.885 | 0.045 | 0.031 | 4196 | 0.206 | 0.153 | 0.524 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | Marijuana use | -0.006 | 0.062 | 3917 | 0.223 | 0.926 | 0.968 | 0.107 | 0.062 | 4196 | 0.206 | 0.085 | 0.666 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | Pregnancy complications | -0.006 | 0.028 | 3917 | 0.223 | 0.822 | 0.991 | 0.009 | 0.028 | 4196 | 0.206 | 0.743 | 0.899 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | Birth complications | 0.019 | 0.031 | 3917 | 0.223 | 0.541 | 0.991 | -0.019 | 0.029 | 4196 | 0.206 | 0.510 | 0.904 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | Unplanned pregnancy | -0.002 | 0.030 | 3917 | 0.317 | 0.959 | 0.981 | 0.043 | 0.030 | 4196 | 0.277 | 0.162 | 0.983 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | C-Section | -0.011 | 0.027 | 3917 | 0.317 | 0.680 | 0.839 | -0.047 | 0.027 | 4196 | 0.277 | 0.079 | 0.337 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | Gestational Age | -0.035 | 0.038 | 3917 | 0.317 | 0.352 | 0.520 | 0.091 | 0.036 | 4196 | 0.277 | 0.012 | 0.031 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | Birth weight | 0.125 | 0.036 | 3917 | 0.319 | 0.001 | 0.006 | 0.023 | 0.037 | 4196 | 0.276 | 0.535 | 0.682 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | Tobacco use | -0.020 | 0.041 | 3917 | 0.317 | 0.635 | 0.866 | 0.054 | 0.041 | 4196 | 0.277 | 0.189 | 0.430 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | Alcohol use | 0.046 | 0.030 | 3917 | 0.318 | 0.122 | 0.562 | 0.080 | 0.030 | 4196 | 0.277 | 0.007 | 0.251 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | Marijuana use | 0.113 | 0.058 | 3917 | 0.318 | 0.052 | 0.793 | 0.054 | 0.059 | 4196 | 0.276 | 0.358 | 0.791 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | Pregnancy complications | 0.015 | 0.026 | 3917 | 0.317 | 0.571 | 0.970 | -0.017 | 0.026 | 4196 | 0.276 | 0.525 | 0.743 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | Birth complications | -0.011 | 0.029 | 3917 | 0.317 | 0.697 | 0.991 | -0.011 | 0.028 | 4196 | 0.276 | 0.699 | 0.951 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | Unplanned pregnancy | 0.017 | 0.027 | 3917 | 0.407 | 0.533 | 0.981 | 0.004 | 0.026 | 4196 | 0.407 | 0.875 | 0.992 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | C-Section | -0.054 | 0.024 | 3917 | 0.408 | 0.027 | 0.167 | -0.034 | 0.023 | 4196 | 0.408 | 0.137 | 0.405 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | Gestational Age | -0.038 | 0.034 | 3917 | 0.408 | 0.257 | 0.437 | -0.115 | 0.031 | 4196 | 0.412 | 0.000 | 0.001 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | Birth weight | -0.067 | 0.033 | 3917 | 0.409 | 0.039 | 0.117 | -0.063 | 0.032 | 4196 | 0.409 | 0.046 | 0.226 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | Tobacco use | 0.016 | 0.037 | 3917 | 0.407 | 0.671 | 0.866 | -0.047 | 0.035 | 4196 | 0.407 | 0.185 | 0.430 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | Alcohol use | 0.026 | 0.027 | 3917 | 0.407 | 0.321 | 0.698 | 0.031 | 0.026 | 4196 | 0.408 | 0.221 | 0.561 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | Marijuana use | 0.026 | 0.052 | 3917 | 0.407 | 0.621 | 0.950 | 0.022 | 0.051 | 4196 | 0.407 | 0.663 | 0.901 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | Pregnancy complications | -0.019 | 0.024 | 3917 | 0.407 | 0.417 | 0.788 | -0.005 | 0.023 | 4196 | 0.407 | 0.840 | 0.953 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | Birth complications | 0.017 | 0.026 | 3917 | 0.407 | 0.519 | 0.991 | -0.032 | 0.024 | 4196 | 0.407 | 0.185 | 0.779 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | Unplanned pregnancy | -0.023 | 0.032 | 3917 | 0.160 | 0.468 | 0.981 | 0.016 | 0.031 | 4196 | 0.168 | 0.609 | 0.983 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | C-Section | -0.036 | 0.029 | 3917 | 0.161 | 0.217 | 0.592 | -0.006 | 0.028 | 4196 | 0.168 | 0.816 | 0.894 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | Gestational Age | -0.162 | 0.040 | 3917 | 0.164 | 0.000 | 0.001 | -0.024 | 0.038 | 4196 | 0.169 | 0.520 | 0.632 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | Birth weight | 0.004 | 0.039 | 3917 | 0.160 | 0.917 | 0.940 | -0.028 | 0.038 | 4196 | 0.169 | 0.463 | 0.682 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | Tobacco use | 0.032 | 0.044 | 3917 | 0.160 | 0.471 | 0.727 | -0.008 | 0.042 | 4196 | 0.168 | 0.852 | 0.895 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | Alcohol use | -0.008 | 0.032 | 3917 | 0.160 | 0.791 | 0.932 | 0.017 | 0.031 | 4196 | 0.168 | 0.585 | 0.846 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | Marijuana use | 0.058 | 0.062 | 3917 | 0.160 | 0.356 | 0.950 | 0.051 | 0.061 | 4196 | 0.169 | 0.397 | 0.802 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | Pregnancy complications | -0.050 | 0.028 | 3917 | 0.161 | 0.076 | 0.372 | -0.008 | 0.027 | 4196 | 0.168 | 0.763 | 0.899 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | Birth complications | 0.025 | 0.032 | 3917 | 0.160 | 0.423 | 0.991 | -0.021 | 0.029 | 4196 | 0.168 | 0.459 | 0.904 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | Unplanned pregnancy | 0.001 | 0.029 | 3917 | 0.063 | 0.967 | 0.981 | -0.034 | 0.028 | 4196 | 0.103 | 0.231 | 0.983 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | C-Section | 0.058 | 0.026 | 3917 | 0.063 | 0.025 | 0.167 | 0.031 | 0.025 | 4196 | 0.103 | 0.206 | 0.463 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | Gestational Age | 0.089 | 0.036 | 3917 | 0.062 | 0.013 | 0.062 | -0.029 | 0.033 | 4196 | 0.104 | 0.380 | 0.506 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | Birth weight | 0.064 | 0.034 | 3917 | 0.060 | 0.062 | 0.157 | 0.045 | 0.034 | 4196 | 0.102 | 0.188 | 0.478 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | Tobacco use | 0.026 | 0.039 | 3917 | 0.062 | 0.507 | 0.767 | -0.078 | 0.038 | 4196 | 0.102 | 0.039 | 0.272 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | Alcohol use | 0.015 | 0.028 | 3917 | 0.063 | 0.585 | 0.867 | 0.009 | 0.028 | 4196 | 0.104 | 0.743 | 0.951 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | Marijuana use | 0.089 | 0.055 | 3917 | 0.063 | 0.105 | 0.950 | -0.069 | 0.054 | 4196 | 0.103 | 0.204 | 0.666 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | Pregnancy complications | -0.004 | 0.025 | 3917 | 0.063 | 0.859 | 0.991 | -0.014 | 0.024 | 4196 | 0.103 | 0.560 | 0.778 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | Birth complications | 0.064 | 0.028 | 3917 | 0.062 | 0.022 | 0.741 | -0.022 | 0.026 | 4196 | 0.104 | 0.400 | 0.904 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | Unplanned pregnancy | 0.002 | 0.029 | 3917 | 0.330 | 0.935 | 0.981 | -0.002 | 0.029 | 4196 | 0.317 | 0.932 | 0.992 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | C-Section | -0.100 | 0.026 | 3917 | 0.333 | 0.000 | 0.004 | -0.011 | 0.025 | 4196 | 0.317 | 0.666 | 0.839 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | Gestational Age | -0.203 | 0.036 | 3917 | 0.338 | 0.000 | 0.000 | -0.128 | 0.034 | 4196 | 0.323 | 0.000 | 0.001 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | Birth weight | -0.143 | 0.035 | 3917 | 0.336 | 0.000 | 0.001 | -0.111 | 0.035 | 4196 | 0.322 | 0.001 | 0.019 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | Tobacco use | 0.002 | 0.040 | 3917 | 0.330 | 0.951 | 0.987 | -0.049 | 0.039 | 4196 | 0.317 | 0.207 | 0.441 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | Alcohol use | 0.049 | 0.028 | 3917 | 0.331 | 0.084 | 0.479 | 0.055 | 0.028 | 4196 | 0.318 | 0.050 | 0.524 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | Marijuana use | 0.018 | 0.056 | 3917 | 0.330 | 0.754 | 0.967 | -0.066 | 0.056 | 4196 | 0.317 | 0.235 | 0.666 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | Pregnancy complications | -0.024 | 0.025 | 3917 | 0.330 | 0.350 | 0.761 | -0.029 | 0.025 | 4196 | 0.318 | 0.252 | 0.548 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | Birth complications | -0.050 | 0.028 | 3917 | 0.331 | 0.078 | 0.991 | -0.009 | 0.027 | 4196 | 0.317 | 0.734 | 0.951 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | Unplanned pregnancy | -0.027 | 0.035 | 3917 | 0.104 | 0.434 | 0.981 | -0.029 | 0.033 | 4196 | 0.137 | 0.387 | 0.983 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | C-Section | 0.033 | 0.031 | 3917 | 0.104 | 0.285 | 0.693 | 0.016 | 0.029 | 4196 | 0.137 | 0.584 | 0.764 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | Gestational Age | 0.102 | 0.043 | 3917 | 0.104 | 0.019 | 0.071 | 0.013 | 0.040 | 4196 | 0.137 | 0.745 | 0.817 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | Birth weight | 0.093 | 0.042 | 3917 | 0.103 | 0.026 | 0.093 | 0.020 | 0.040 | 4196 | 0.137 | 0.622 | 0.769 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | Tobacco use | -0.125 | 0.047 | 3917 | 0.105 | 0.008 | 0.568 | -0.052 | 0.045 | 4196 | 0.137 | 0.245 | 0.450 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | Alcohol use | -0.029 | 0.034 | 3917 | 0.103 | 0.398 | 0.703 | 0.027 | 0.033 | 4196 | 0.137 | 0.401 | 0.757 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | Marijuana use | -0.064 | 0.067 | 3917 | 0.104 | 0.338 | 0.950 | -0.053 | 0.065 | 4196 | 0.137 | 0.413 | 0.802 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | Pregnancy complications | 0.086 | 0.030 | 3917 | 0.105 | 0.004 | 0.130 | 0.064 | 0.029 | 4196 | 0.137 | 0.026 | 0.418 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | Birth complications | 0.042 | 0.034 | 3917 | 0.104 | 0.218 | 0.991 | -0.007 | 0.031 | 4196 | 0.137 | 0.813 | 0.951 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | Unplanned pregnancy | 0.017 | 0.032 | 3917 | 0.213 | 0.595 | 0.981 | -0.003 | 0.032 | 4196 | 0.206 | 0.927 | 0.992 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | C-Section | -0.009 | 0.029 | 3917 | 0.213 | 0.748 | 0.839 | -0.037 | 0.028 | 4196 | 0.207 | 0.197 | 0.462 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | Gestational Age | -0.087 | 0.040 | 3917 | 0.215 | 0.030 | 0.093 | -0.075 | 0.038 | 4196 | 0.208 | 0.052 | 0.097 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | Birth weight | -0.023 | 0.039 | 3917 | 0.213 | 0.554 | 0.698 | -0.054 | 0.039 | 4196 | 0.207 | 0.168 | 0.457 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | Tobacco use | 0.019 | 0.044 | 3917 | 0.213 | 0.673 | 0.866 | -0.089 | 0.043 | 4196 | 0.207 | 0.040 | 0.272 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | Alcohol use | 0.011 | 0.032 | 3917 | 0.213 | 0.716 | 0.885 | -0.094 | 0.032 | 4196 | 0.207 | 0.003 | 0.202 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | Marijuana use | -0.005 | 0.062 | 3917 | 0.213 | 0.930 | 0.968 | -0.129 | 0.063 | 4196 | 0.207 | 0.039 | 0.532 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | Pregnancy complications | -0.010 | 0.028 | 3917 | 0.213 | 0.722 | 0.991 | -0.040 | 0.028 | 4196 | 0.207 | 0.150 | 0.510 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | Birth complications | -0.026 | 0.031 | 3917 | 0.213 | 0.411 | 0.991 | 0.012 | 0.030 | 4196 | 0.206 | 0.697 | 0.951 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | Unplanned pregnancy | -0.035 | 0.034 | 3917 | 0.155 | 0.297 | 0.981 | 0.011 | 0.034 | 4196 | 0.125 | 0.733 | 0.983 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | C-Section | -0.022 | 0.030 | 3917 | 0.155 | 0.467 | 0.839 | -0.018 | 0.030 | 4196 | 0.125 | 0.535 | 0.742 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | Gestational Age | -0.031 | 0.042 | 3917 | 0.155 | 0.457 | 0.567 | -0.102 | 0.040 | 4196 | 0.127 | 0.011 | 0.030 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | Birth weight | -0.030 | 0.041 | 3917 | 0.155 | 0.456 | 0.619 | 0.002 | 0.041 | 4196 | 0.125 | 0.952 | 0.961 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | Tobacco use | 0.019 | 0.046 | 3917 | 0.154 | 0.688 | 0.866 | 0.078 | 0.045 | 4196 | 0.125 | 0.087 | 0.296 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | Alcohol use | -0.027 | 0.033 | 3917 | 0.154 | 0.418 | 0.710 | 0.057 | 0.033 | 4196 | 0.126 | 0.086 | 0.524 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | Marijuana use | -0.030 | 0.065 | 3917 | 0.154 | 0.649 | 0.950 | 0.103 | 0.065 | 4196 | 0.125 | 0.115 | 0.666 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | Pregnancy complications | 0.004 | 0.029 | 3917 | 0.154 | 0.903 | 0.991 | -0.009 | 0.029 | 4196 | 0.125 | 0.769 | 0.899 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | Birth complications | 0.020 | 0.033 | 3917 | 0.154 | 0.535 | 0.991 | 0.005 | 0.031 | 4196 | 0.125 | 0.870 | 0.951 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | Unplanned pregnancy | 0.051 | 0.033 | 3917 | 0.179 | 0.126 | 0.981 | -0.019 | 0.032 | 4196 | 0.198 | 0.543 | 0.983 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | C-Section | 0.009 | 0.030 | 3917 | 0.178 | 0.774 | 0.839 | -0.013 | 0.028 | 4196 | 0.198 | 0.643 | 0.824 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | Gestational Age | -0.048 | 0.041 | 3917 | 0.179 | 0.247 | 0.431 | -0.161 | 0.038 | 4196 | 0.204 | 0.000 | 0.000 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | Birth weight | -0.043 | 0.040 | 3917 | 0.179 | 0.277 | 0.468 | -0.006 | 0.039 | 4196 | 0.198 | 0.881 | 0.961 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | Tobacco use | -0.035 | 0.045 | 3917 | 0.179 | 0.438 | 0.727 | -0.024 | 0.043 | 4196 | 0.198 | 0.577 | 0.700 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | Alcohol use | -0.003 | 0.032 | 3917 | 0.178 | 0.934 | 0.955 | 0.064 | 0.031 | 4196 | 0.199 | 0.041 | 0.524 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | Marijuana use | -0.022 | 0.064 | 3917 | 0.178 | 0.726 | 0.950 | -0.055 | 0.062 | 4196 | 0.198 | 0.372 | 0.791 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | Pregnancy complications | 0.057 | 0.029 | 3917 | 0.179 | 0.048 | 0.371 | 0.010 | 0.028 | 4196 | 0.198 | 0.715 | 0.899 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | Birth complications | 0.006 | 0.032 | 3917 | 0.178 | 0.841 | 0.991 | 0.017 | 0.029 | 4196 | 0.198 | 0.574 | 0.929 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | Unplanned pregnancy | -0.024 | 0.035 | 3917 | 0.094 | 0.495 | 0.981 | 0.012 | 0.034 | 4196 | 0.108 | 0.726 | 0.983 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | C-Section | -0.041 | 0.031 | 3917 | 0.095 | 0.196 | 0.591 | -0.037 | 0.030 | 4196 | 0.109 | 0.211 | 0.463 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | Gestational Age | -0.032 | 0.044 | 3917 | 0.095 | 0.458 | 0.567 | -0.179 | 0.040 | 4196 | 0.116 | 0.000 | 0.000 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | Birth weight | -0.026 | 0.042 | 3917 | 0.094 | 0.528 | 0.678 | -0.039 | 0.041 | 4196 | 0.109 | 0.337 | 0.603 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | Tobacco use | -0.014 | 0.048 | 3917 | 0.094 | 0.767 | 0.915 | 0.094 | 0.046 | 4196 | 0.110 | 0.040 | 0.272 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | Alcohol use | -0.029 | 0.034 | 3917 | 0.094 | 0.394 | 0.703 | 0.038 | 0.033 | 4196 | 0.109 | 0.256 | 0.580 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | Marijuana use | 0.051 | 0.067 | 3917 | 0.094 | 0.451 | 0.950 | 0.090 | 0.066 | 4196 | 0.109 | 0.174 | 0.666 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | Pregnancy complications | 0.037 | 0.030 | 3917 | 0.094 | 0.224 | 0.634 | -0.040 | 0.030 | 4196 | 0.109 | 0.177 | 0.522 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | Birth complications | 0.036 | 0.034 | 3917 | 0.094 | 0.289 | 0.991 | -0.069 | 0.031 | 4196 | 0.110 | 0.028 | 0.611 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | Unplanned pregnancy | -0.002 | 0.034 | 3917 | 0.111 | 0.963 | 0.981 | -0.001 | 0.033 | 4196 | 0.129 | 0.966 | 0.992 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | C-Section | 0.011 | 0.031 | 3917 | 0.111 | 0.712 | 0.839 | -0.005 | 0.029 | 4196 | 0.129 | 0.855 | 0.908 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | Gestational Age | -0.041 | 0.043 | 3917 | 0.111 | 0.338 | 0.510 | 0.098 | 0.039 | 4196 | 0.131 | 0.013 | 0.032 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | Birth weight | 0.070 | 0.041 | 3917 | 0.112 | 0.086 | 0.200 | -0.024 | 0.040 | 4196 | 0.129 | 0.542 | 0.682 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | Tobacco use | -0.038 | 0.046 | 3917 | 0.111 | 0.407 | 0.727 | -0.057 | 0.044 | 4196 | 0.130 | 0.201 | 0.441 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | Alcohol use | -0.063 | 0.033 | 3917 | 0.112 | 0.059 | 0.395 | -0.019 | 0.032 | 4196 | 0.130 | 0.551 | 0.836 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | Marijuana use | 0.060 | 0.066 | 3917 | 0.111 | 0.360 | 0.950 | 0.086 | 0.064 | 4196 | 0.130 | 0.175 | 0.666 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | Pregnancy complications | -0.082 | 0.030 | 3917 | 0.113 | 0.006 | 0.130 | -0.023 | 0.028 | 4196 | 0.129 | 0.413 | 0.717 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | Birth complications | -0.005 | 0.033 | 3917 | 0.111 | 0.880 | 0.991 | -0.019 | 0.030 | 4196 | 0.129 | 0.532 | 0.904 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | Unplanned pregnancy | 0.028 | 0.029 | 3917 | 0.327 | 0.333 | 0.981 | 0.035 | 0.030 | 4196 | 0.306 | 0.242 | 0.983 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | C-Section | 0.017 | 0.026 | 3917 | 0.327 | 0.518 | 0.839 | 0.010 | 0.026 | 4196 | 0.305 | 0.691 | 0.855 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | Gestational Age | -0.087 | 0.037 | 3917 | 0.329 | 0.018 | 0.070 | -0.134 | 0.035 | 4196 | 0.309 | 0.000 | 0.001 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | Birth weight | -0.036 | 0.035 | 3917 | 0.328 | 0.307 | 0.496 | 0.006 | 0.036 | 4196 | 0.305 | 0.862 | 0.961 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | Tobacco use | -0.040 | 0.040 | 3917 | 0.328 | 0.319 | 0.727 | -0.104 | 0.040 | 4196 | 0.306 | 0.009 | 0.121 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | Alcohol use | 0.047 | 0.029 | 3917 | 0.328 | 0.100 | 0.523 | -0.005 | 0.029 | 4196 | 0.305 | 0.860 | 0.951 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | Marijuana use | 0.084 | 0.057 | 3917 | 0.327 | 0.139 | 0.950 | -0.072 | 0.057 | 4196 | 0.305 | 0.211 | 0.666 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | Pregnancy complications | -0.030 | 0.026 | 3917 | 0.328 | 0.241 | 0.656 | -0.035 | 0.026 | 4196 | 0.306 | 0.168 | 0.519 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | Birth complications | 0.003 | 0.029 | 3917 | 0.327 | 0.904 | 0.991 | -0.043 | 0.027 | 4196 | 0.306 | 0.115 | 0.668 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | Unplanned pregnancy | -0.011 | 0.031 | 3917 | 0.275 | 0.722 | 0.981 | -0.004 | 0.031 | 4196 | 0.251 | 0.903 | 0.992 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | C-Section | -0.026 | 0.028 | 3917 | 0.276 | 0.355 | 0.804 | 0.017 | 0.027 | 4196 | 0.251 | 0.547 | 0.742 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | Gestational Age | -0.049 | 0.039 | 3917 | 0.276 | 0.210 | 0.386 | -0.082 | 0.037 | 4196 | 0.252 | 0.028 | 0.065 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | Birth weight | -0.003 | 0.038 | 3917 | 0.275 | 0.940 | 0.940 | -0.025 | 0.038 | 4196 | 0.251 | 0.513 | 0.682 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | Tobacco use | 0.034 | 0.043 | 3917 | 0.275 | 0.431 | 0.727 | -0.050 | 0.042 | 4196 | 0.251 | 0.235 | 0.443 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | Alcohol use | 0.077 | 0.031 | 3917 | 0.277 | 0.012 | 0.365 | -0.010 | 0.031 | 4196 | 0.251 | 0.751 | 0.951 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | Marijuana use | -0.050 | 0.060 | 3917 | 0.275 | 0.413 | 0.950 | -0.033 | 0.060 | 4196 | 0.251 | 0.588 | 0.846 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | Pregnancy complications | -0.031 | 0.027 | 3917 | 0.276 | 0.253 | 0.661 | -0.008 | 0.027 | 4196 | 0.251 | 0.760 | 0.899 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | Birth complications | -0.003 | 0.031 | 3917 | 0.275 | 0.934 | 0.991 | -0.003 | 0.029 | 4196 | 0.251 | 0.927 | 0.951 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | Unplanned pregnancy | 0.008 | 0.029 | 3917 | 0.314 | 0.795 | 0.981 | -0.013 | 0.029 | 4196 | 0.311 | 0.657 | 0.983 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | C-Section | 0.013 | 0.026 | 3917 | 0.314 | 0.610 | 0.839 | 0.019 | 0.026 | 4196 | 0.311 | 0.455 | 0.703 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | Gestational Age | -0.079 | 0.037 | 3917 | 0.315 | 0.032 | 0.095 | -0.067 | 0.035 | 4196 | 0.312 | 0.051 | 0.097 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | Birth weight | 0.023 | 0.035 | 3917 | 0.314 | 0.521 | 0.678 | 0.004 | 0.035 | 4196 | 0.311 | 0.906 | 0.961 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | Tobacco use | -0.062 | 0.040 | 3917 | 0.314 | 0.121 | 0.694 | -0.137 | 0.039 | 4196 | 0.312 | 0.000 | 0.030 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | Alcohol use | -0.005 | 0.029 | 3917 | 0.314 | 0.861 | 0.955 | -0.039 | 0.028 | 4196 | 0.311 | 0.170 | 0.524 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | Marijuana use | 0.029 | 0.057 | 3917 | 0.314 | 0.612 | 0.950 | -0.129 | 0.056 | 4196 | 0.311 | 0.022 | 0.456 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | Pregnancy complications | 0.010 | 0.026 | 3917 | 0.314 | 0.693 | 0.991 | -0.031 | 0.025 | 4196 | 0.311 | 0.212 | 0.534 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | Birth complications | -0.018 | 0.029 | 3917 | 0.314 | 0.536 | 0.991 | -0.053 | 0.027 | 4196 | 0.311 | 0.046 | 0.611 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | Unplanned pregnancy | 0.003 | 0.028 | 3917 | 0.382 | 0.916 | 0.981 | 0.017 | 0.028 | 4196 | 0.353 | 0.543 | 0.983 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | C-Section | -0.001 | 0.025 | 3917 | 0.382 | 0.961 | 0.961 | -0.067 | 0.025 | 4196 | 0.354 | 0.007 | 0.127 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | Gestational Age | -0.044 | 0.034 | 3917 | 0.383 | 0.201 | 0.379 | -0.095 | 0.034 | 4196 | 0.355 | 0.005 | 0.016 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | Birth weight | -0.010 | 0.033 | 3917 | 0.382 | 0.752 | 0.811 | -0.023 | 0.034 | 4196 | 0.353 | 0.511 | 0.682 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | Tobacco use | -0.029 | 0.037 | 3917 | 0.382 | 0.444 | 0.727 | 0.043 | 0.038 | 4196 | 0.353 | 0.262 | 0.457 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | Alcohol use | 0.006 | 0.027 | 3917 | 0.382 | 0.828 | 0.954 | 0.030 | 0.028 | 4196 | 0.353 | 0.279 | 0.593 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | Marijuana use | 0.037 | 0.053 | 3917 | 0.382 | 0.479 | 0.950 | -0.015 | 0.055 | 4196 | 0.353 | 0.780 | 0.903 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | Pregnancy complications | -0.024 | 0.024 | 3917 | 0.383 | 0.315 | 0.738 | -0.041 | 0.025 | 4196 | 0.353 | 0.093 | 0.418 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | Birth complications | 0.030 | 0.027 | 3917 | 0.382 | 0.270 | 0.991 | 0.002 | 0.026 | 4196 | 0.353 | 0.937 | 0.951 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | Unplanned pregnancy | 0.009 | 0.031 | 3917 | 0.254 | 0.783 | 0.981 | 0.022 | 0.030 | 4196 | 0.280 | 0.468 | 0.983 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | C-Section | -0.042 | 0.028 | 3917 | 0.255 | 0.137 | 0.547 | 0.020 | 0.027 | 4196 | 0.280 | 0.450 | 0.703 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | Gestational Age | -0.052 | 0.039 | 3917 | 0.255 | 0.188 | 0.366 | -0.115 | 0.036 | 4196 | 0.283 | 0.001 | 0.006 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | Birth weight | -0.014 | 0.038 | 3917 | 0.254 | 0.711 | 0.811 | -0.063 | 0.037 | 4196 | 0.281 | 0.083 | 0.298 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | Tobacco use | -0.089 | 0.043 | 3917 | 0.255 | 0.039 | 0.694 | 0.033 | 0.041 | 4196 | 0.280 | 0.424 | 0.576 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | Alcohol use | 0.008 | 0.031 | 3917 | 0.254 | 0.795 | 0.932 | 0.004 | 0.030 | 4196 | 0.280 | 0.895 | 0.951 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | Marijuana use | -0.063 | 0.061 | 3917 | 0.255 | 0.298 | 0.950 | -0.029 | 0.059 | 4196 | 0.280 | 0.622 | 0.864 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | Pregnancy complications | -0.001 | 0.027 | 3917 | 0.254 | 0.964 | 0.991 | -0.056 | 0.026 | 4196 | 0.281 | 0.034 | 0.418 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | Birth complications | -0.022 | 0.031 | 3917 | 0.255 | 0.471 | 0.991 | -0.015 | 0.028 | 4196 | 0.280 | 0.589 | 0.931 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | Unplanned pregnancy | 0.002 | 0.030 | 3917 | 0.311 | 0.950 | 0.981 | 0.023 | 0.030 | 4196 | 0.281 | 0.444 | 0.983 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | C-Section | -0.017 | 0.027 | 3917 | 0.311 | 0.525 | 0.839 | -0.015 | 0.026 | 4196 | 0.281 | 0.556 | 0.742 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | Gestational Age | -0.030 | 0.037 | 3917 | 0.311 | 0.413 | 0.567 | -0.038 | 0.036 | 4196 | 0.282 | 0.288 | 0.407 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | Birth weight | 0.063 | 0.036 | 3917 | 0.310 | 0.079 | 0.191 | 0.026 | 0.036 | 4196 | 0.280 | 0.481 | 0.682 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | Tobacco use | 0.001 | 0.040 | 3917 | 0.311 | 0.972 | 0.987 | -0.039 | 0.040 | 4196 | 0.281 | 0.332 | 0.537 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | Alcohol use | 0.026 | 0.029 | 3917 | 0.311 | 0.372 | 0.703 | 0.032 | 0.029 | 4196 | 0.281 | 0.279 | 0.593 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | Marijuana use | 0.044 | 0.057 | 3917 | 0.310 | 0.438 | 0.950 | -0.070 | 0.058 | 4196 | 0.281 | 0.230 | 0.666 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | Pregnancy complications | -0.032 | 0.026 | 3917 | 0.311 | 0.209 | 0.619 | -0.009 | 0.026 | 4196 | 0.281 | 0.741 | 0.899 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | Birth complications | -0.001 | 0.029 | 3917 | 0.311 | 0.984 | 0.991 | 0.003 | 0.028 | 4196 | 0.281 | 0.913 | 0.951 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | Unplanned pregnancy | -0.010 | 0.028 | 3917 | 0.311 | 0.712 | 0.981 | 0.048 | 0.027 | 4196 | 0.356 | 0.075 | 0.983 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | C-Section | 0.011 | 0.025 | 3917 | 0.311 | 0.648 | 0.839 | 0.018 | 0.024 | 4196 | 0.355 | 0.451 | 0.703 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | Gestational Age | -0.065 | 0.035 | 3917 | 0.312 | 0.063 | 0.148 | -0.065 | 0.032 | 4196 | 0.357 | 0.046 | 0.097 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | Birth weight | 0.054 | 0.033 | 3917 | 0.310 | 0.106 | 0.217 | -0.032 | 0.033 | 4196 | 0.356 | 0.326 | 0.600 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | Tobacco use | 0.034 | 0.038 | 3917 | 0.311 | 0.367 | 0.727 | -0.064 | 0.037 | 4196 | 0.355 | 0.081 | 0.291 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | Alcohol use | 0.007 | 0.027 | 3917 | 0.311 | 0.785 | 0.932 | 0.012 | 0.027 | 4196 | 0.355 | 0.647 | 0.898 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | Marijuana use | -0.031 | 0.054 | 3917 | 0.311 | 0.569 | 0.950 | 0.015 | 0.053 | 4196 | 0.355 | 0.768 | 0.903 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | Pregnancy complications | 0.010 | 0.024 | 3917 | 0.311 | 0.677 | 0.991 | -0.047 | 0.024 | 4196 | 0.356 | 0.046 | 0.418 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | Birth complications | -0.036 | 0.027 | 3917 | 0.311 | 0.186 | 0.991 | -0.042 | 0.025 | 4196 | 0.356 | 0.090 | 0.611 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | Unplanned pregnancy | -0.009 | 0.030 | 3917 | 0.280 | 0.768 | 0.981 | -0.012 | 0.030 | 4196 | 0.255 | 0.704 | 0.983 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | C-Section | 0.034 | 0.027 | 3917 | 0.280 | 0.209 | 0.592 | -0.048 | 0.027 | 4196 | 0.257 | 0.072 | 0.337 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | Gestational Age | -0.007 | 0.037 | 3917 | 0.280 | 0.849 | 0.932 | -0.142 | 0.036 | 4196 | 0.262 | 0.000 | 0.001 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | Birth weight | -0.034 | 0.036 | 3917 | 0.281 | 0.347 | 0.537 | 0.056 | 0.037 | 4196 | 0.254 | 0.125 | 0.397 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | Tobacco use | -0.069 | 0.041 | 3917 | 0.281 | 0.090 | 0.694 | 0.011 | 0.041 | 4196 | 0.255 | 0.792 | 0.869 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | Alcohol use | -0.077 | 0.029 | 3917 | 0.280 | 0.009 | 0.365 | 0.048 | 0.030 | 4196 | 0.256 | 0.104 | 0.524 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | Marijuana use | 0.013 | 0.058 | 3917 | 0.280 | 0.819 | 0.968 | -0.031 | 0.059 | 4196 | 0.255 | 0.597 | 0.846 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | Pregnancy complications | -0.047 | 0.026 | 3917 | 0.281 | 0.072 | 0.372 | -0.022 | 0.026 | 4196 | 0.256 | 0.404 | 0.717 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | Birth complications | -0.017 | 0.029 | 3917 | 0.280 | 0.571 | 0.991 | -0.027 | 0.028 | 4196 | 0.256 | 0.332 | 0.868 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | Unplanned pregnancy | -0.002 | 0.029 | 3917 | 0.312 | 0.932 | 0.981 | 0.008 | 0.029 | 4196 | 0.306 | 0.779 | 0.983 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | C-Section | -0.042 | 0.026 | 3917 | 0.313 | 0.111 | 0.502 | 0.006 | 0.026 | 4196 | 0.306 | 0.828 | 0.894 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | Gestational Age | -0.018 | 0.036 | 3917 | 0.312 | 0.631 | 0.704 | 0.001 | 0.035 | 4196 | 0.306 | 0.978 | 0.982 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | Birth weight | 0.074 | 0.035 | 3917 | 0.311 | 0.034 | 0.106 | 0.026 | 0.035 | 4196 | 0.305 | 0.459 | 0.682 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | Tobacco use | -0.010 | 0.040 | 3917 | 0.312 | 0.794 | 0.916 | -0.110 | 0.039 | 4196 | 0.306 | 0.005 | 0.085 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | Alcohol use | -0.012 | 0.028 | 3917 | 0.312 | 0.676 | 0.883 | -0.020 | 0.029 | 4196 | 0.305 | 0.478 | 0.793 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | Marijuana use | -0.041 | 0.056 | 3917 | 0.312 | 0.470 | 0.950 | -0.153 | 0.056 | 4196 | 0.306 | 0.007 | 0.396 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | Pregnancy complications | 0.001 | 0.025 | 3917 | 0.312 | 0.976 | 0.991 | 0.018 | 0.025 | 4196 | 0.306 | 0.476 | 0.719 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | Birth complications | -0.011 | 0.028 | 3917 | 0.312 | 0.686 | 0.991 | 0.006 | 0.027 | 4196 | 0.306 | 0.818 | 0.951 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | Unplanned pregnancy | -0.006 | 0.032 | 3917 | 0.227 | 0.853 | 0.981 | 0.017 | 0.031 | 4196 | 0.255 | 0.577 | 0.983 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | C-Section | 0.010 | 0.029 | 3917 | 0.227 | 0.736 | 0.839 | -0.017 | 0.027 | 4196 | 0.255 | 0.534 | 0.742 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | Gestational Age | -0.004 | 0.040 | 3917 | 0.227 | 0.918 | 0.952 | -0.131 | 0.037 | 4196 | 0.259 | 0.000 | 0.002 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | Birth weight | -0.010 | 0.039 | 3917 | 0.227 | 0.802 | 0.852 | -0.032 | 0.038 | 4196 | 0.255 | 0.394 | 0.669 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | Tobacco use | -0.034 | 0.044 | 3917 | 0.227 | 0.445 | 0.727 | -0.051 | 0.042 | 4196 | 0.254 | 0.221 | 0.441 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | Alcohol use | -0.047 | 0.032 | 3917 | 0.227 | 0.134 | 0.562 | 0.040 | 0.030 | 4196 | 0.255 | 0.188 | 0.532 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | Marijuana use | -0.035 | 0.062 | 3917 | 0.227 | 0.576 | 0.950 | -0.051 | 0.060 | 4196 | 0.254 | 0.402 | 0.802 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | Pregnancy complications | -0.048 | 0.028 | 3917 | 0.228 | 0.090 | 0.372 | -0.042 | 0.027 | 4196 | 0.255 | 0.122 | 0.460 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | Birth complications | 0.008 | 0.031 | 3917 | 0.227 | 0.804 | 0.991 | 0.013 | 0.029 | 4196 | 0.254 | 0.644 | 0.951 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | Unplanned pregnancy | -0.011 | 0.035 | 3917 | 0.101 | 0.744 | 0.981 | 0.011 | 0.034 | 4196 | 0.112 | 0.747 | 0.983 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | C-Section | 0.017 | 0.031 | 3917 | 0.101 | 0.584 | 0.839 | 0.046 | 0.030 | 4196 | 0.113 | 0.120 | 0.405 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | Gestational Age | 0.027 | 0.043 | 3917 | 0.101 | 0.532 | 0.624 | -0.026 | 0.040 | 4196 | 0.113 | 0.514 | 0.632 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | Birth weight | 0.083 | 0.042 | 3917 | 0.101 | 0.049 | 0.134 | -0.003 | 0.041 | 4196 | 0.112 | 0.942 | 0.961 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | Tobacco use | 0.073 | 0.048 | 3917 | 0.101 | 0.126 | 0.694 | 0.000 | 0.045 | 4196 | 0.112 | 0.994 | 0.994 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | Alcohol use | 0.018 | 0.034 | 3917 | 0.101 | 0.599 | 0.867 | 0.065 | 0.033 | 4196 | 0.114 | 0.051 | 0.524 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | Marijuana use | 0.127 | 0.067 | 3917 | 0.101 | 0.058 | 0.793 | -0.079 | 0.066 | 4196 | 0.112 | 0.229 | 0.666 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | Pregnancy complications | 0.028 | 0.030 | 3917 | 0.101 | 0.356 | 0.761 | 0.037 | 0.029 | 4196 | 0.112 | 0.205 | 0.534 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | Birth complications | 0.009 | 0.034 | 3917 | 0.100 | 0.790 | 0.991 | -0.021 | 0.031 | 4196 | 0.113 | 0.505 | 0.904 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | Unplanned pregnancy | 0.032 | 0.034 | 3917 | 0.063 | 0.349 | 0.981 | 0.000 | 0.034 | 4196 | 0.071 | 0.992 | 0.992 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | C-Section | 0.044 | 0.031 | 3917 | 0.064 | 0.157 | 0.563 | 0.057 | 0.030 | 4196 | 0.073 | 0.058 | 0.337 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | Gestational Age | 0.099 | 0.043 | 3917 | 0.064 | 0.021 | 0.075 | 0.013 | 0.041 | 4196 | 0.071 | 0.758 | 0.818 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | Birth weight | 0.145 | 0.041 | 3917 | 0.063 | 0.000 | 0.006 | 0.155 | 0.041 | 4196 | 0.073 | 0.000 | 0.004 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | Tobacco use | -0.044 | 0.047 | 3917 | 0.064 | 0.348 | 0.727 | -0.082 | 0.046 | 4196 | 0.071 | 0.077 | 0.291 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | Alcohol use | -0.076 | 0.033 | 3917 | 0.063 | 0.024 | 0.365 | 0.026 | 0.033 | 4196 | 0.072 | 0.435 | 0.780 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | Marijuana use | 0.072 | 0.066 | 3917 | 0.064 | 0.273 | 0.950 | 0.005 | 0.066 | 4196 | 0.071 | 0.937 | 0.975 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | Pregnancy complications | 0.021 | 0.030 | 3917 | 0.064 | 0.475 | 0.851 | 0.052 | 0.030 | 4196 | 0.072 | 0.078 | 0.418 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | Birth complications | 0.047 | 0.033 | 3917 | 0.064 | 0.160 | 0.991 | -0.007 | 0.031 | 4196 | 0.071 | 0.824 | 0.951 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | Unplanned pregnancy | -0.026 | 0.034 | 3917 | 0.168 | 0.436 | 0.981 | 0.008 | 0.033 | 4196 | 0.156 | 0.802 | 0.983 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | C-Section | -0.019 | 0.030 | 3917 | 0.168 | 0.532 | 0.839 | -0.035 | 0.029 | 4196 | 0.156 | 0.230 | 0.488 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | Gestational Age | -0.004 | 0.042 | 3917 | 0.168 | 0.924 | 0.952 | -0.028 | 0.040 | 4196 | 0.156 | 0.482 | 0.618 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | Birth weight | 0.018 | 0.040 | 3917 | 0.168 | 0.659 | 0.786 | 0.046 | 0.040 | 4196 | 0.156 | 0.249 | 0.536 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | Tobacco use | 0.044 | 0.046 | 3917 | 0.168 | 0.335 | 0.727 | -0.086 | 0.045 | 4196 | 0.156 | 0.057 | 0.291 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | Alcohol use | 0.003 | 0.033 | 3917 | 0.168 | 0.936 | 0.955 | 0.007 | 0.033 | 4196 | 0.156 | 0.818 | 0.951 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | Marijuana use | 0.007 | 0.065 | 3917 | 0.168 | 0.917 | 0.968 | -0.037 | 0.065 | 4196 | 0.156 | 0.571 | 0.846 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | Pregnancy complications | 0.005 | 0.029 | 3917 | 0.168 | 0.871 | 0.991 | -0.047 | 0.029 | 4196 | 0.156 | 0.100 | 0.418 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | Birth complications | 0.023 | 0.033 | 3917 | 0.168 | 0.491 | 0.991 | -0.034 | 0.031 | 4196 | 0.156 | 0.270 | 0.823 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | Unplanned pregnancy | 0.020 | 0.029 | 3917 | 0.299 | 0.492 | 0.981 | 0.007 | 0.028 | 4196 | 0.297 | 0.794 | 0.983 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | C-Section | -0.102 | 0.026 | 3917 | 0.303 | 0.000 | 0.004 | -0.046 | 0.025 | 4196 | 0.298 | 0.066 | 0.337 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | Gestational Age | -0.140 | 0.036 | 3917 | 0.303 | 0.000 | 0.001 | -0.106 | 0.034 | 4196 | 0.301 | 0.002 | 0.007 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | Birth weight | -0.123 | 0.035 | 3917 | 0.303 | 0.000 | 0.006 | -0.135 | 0.034 | 4196 | 0.302 | 0.000 | 0.004 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | Tobacco use | -0.017 | 0.039 | 3917 | 0.299 | 0.672 | 0.866 | 0.012 | 0.038 | 4196 | 0.297 | 0.750 | 0.865 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | Alcohol use | -0.027 | 0.028 | 3917 | 0.298 | 0.328 | 0.698 | 0.051 | 0.028 | 4196 | 0.298 | 0.065 | 0.524 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | Marijuana use | 0.046 | 0.055 | 3917 | 0.299 | 0.405 | 0.950 | 0.090 | 0.055 | 4196 | 0.298 | 0.101 | 0.666 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | Pregnancy complications | -0.080 | 0.025 | 3917 | 0.301 | 0.001 | 0.098 | -0.040 | 0.025 | 4196 | 0.298 | 0.103 | 0.418 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | Birth complications | -0.028 | 0.028 | 3917 | 0.299 | 0.324 | 0.991 | -0.024 | 0.026 | 4196 | 0.297 | 0.363 | 0.904 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | Unplanned pregnancy | 0.013 | 0.033 | 3917 | 0.142 | 0.691 | 0.981 | 0.031 | 0.032 | 4196 | 0.151 | 0.328 | 0.983 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | C-Section | -0.004 | 0.030 | 3917 | 0.142 | 0.888 | 0.915 | -0.024 | 0.028 | 4196 | 0.151 | 0.403 | 0.703 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | Gestational Age | -0.135 | 0.041 | 3917 | 0.147 | 0.001 | 0.009 | -0.134 | 0.038 | 4196 | 0.157 | 0.000 | 0.002 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | Birth weight | -0.056 | 0.040 | 3917 | 0.144 | 0.159 | 0.301 | -0.071 | 0.039 | 4196 | 0.153 | 0.067 | 0.253 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | Tobacco use | 0.036 | 0.045 | 3917 | 0.142 | 0.424 | 0.727 | -0.081 | 0.043 | 4196 | 0.150 | 0.060 | 0.291 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | Alcohol use | 0.050 | 0.032 | 3917 | 0.143 | 0.127 | 0.562 | 0.023 | 0.031 | 4196 | 0.151 | 0.471 | 0.793 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | Marijuana use | -0.051 | 0.064 | 3917 | 0.143 | 0.421 | 0.950 | -0.064 | 0.062 | 4196 | 0.150 | 0.302 | 0.770 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | Pregnancy complications | 0.004 | 0.029 | 3917 | 0.142 | 0.895 | 0.991 | 0.047 | 0.028 | 4196 | 0.150 | 0.089 | 0.418 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | Birth complications | -0.005 | 0.032 | 3917 | 0.142 | 0.886 | 0.991 | 0.000 | 0.030 | 4196 | 0.150 | 0.988 | 0.988 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | Unplanned pregnancy | -0.017 | 0.035 | 3917 | 0.101 | 0.617 | 0.981 | 0.014 | 0.035 | 4196 | 0.085 | 0.690 | 0.983 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | C-Section | 0.014 | 0.031 | 3917 | 0.101 | 0.652 | 0.839 | 0.047 | 0.030 | 4196 | 0.086 | 0.122 | 0.405 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | Gestational Age | 0.005 | 0.043 | 3917 | 0.101 | 0.901 | 0.952 | -0.006 | 0.041 | 4196 | 0.085 | 0.891 | 0.932 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | Birth weight | -0.004 | 0.042 | 3917 | 0.101 | 0.926 | 0.940 | 0.008 | 0.042 | 4196 | 0.085 | 0.856 | 0.961 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | Tobacco use | 0.038 | 0.048 | 3917 | 0.101 | 0.420 | 0.727 | -0.008 | 0.046 | 4196 | 0.085 | 0.855 | 0.895 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | Alcohol use | 0.044 | 0.034 | 3917 | 0.101 | 0.197 | 0.584 | -0.002 | 0.034 | 4196 | 0.085 | 0.947 | 0.954 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | Marijuana use | 0.005 | 0.067 | 3917 | 0.101 | 0.940 | 0.968 | -0.017 | 0.067 | 4196 | 0.085 | 0.797 | 0.903 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | Pregnancy complications | -0.026 | 0.030 | 3917 | 0.101 | 0.396 | 0.788 | -0.001 | 0.030 | 4196 | 0.085 | 0.980 | 0.980 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | Birth complications | -0.040 | 0.034 | 3917 | 0.101 | 0.244 | 0.991 | 0.026 | 0.032 | 4196 | 0.085 | 0.411 | 0.904 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | Unplanned pregnancy | -0.030 | 0.032 | 3917 | 0.172 | 0.356 | 0.981 | 0.027 | 0.032 | 4196 | 0.167 | 0.402 | 0.983 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | C-Section | 0.007 | 0.029 | 3917 | 0.172 | 0.815 | 0.866 | 0.023 | 0.028 | 4196 | 0.167 | 0.421 | 0.703 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | Gestational Age | -0.037 | 0.040 | 3917 | 0.173 | 0.365 | 0.522 | -0.075 | 0.038 | 4196 | 0.169 | 0.050 | 0.097 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | Birth weight | 0.074 | 0.039 | 3917 | 0.171 | 0.056 | 0.147 | 0.039 | 0.039 | 4196 | 0.166 | 0.310 | 0.600 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | Tobacco use | -0.052 | 0.044 | 3917 | 0.173 | 0.237 | 0.727 | -0.052 | 0.043 | 4196 | 0.167 | 0.231 | 0.443 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | Alcohol use | 0.017 | 0.032 | 3917 | 0.173 | 0.587 | 0.867 | 0.002 | 0.031 | 4196 | 0.167 | 0.954 | 0.954 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | Marijuana use | -0.041 | 0.062 | 3917 | 0.173 | 0.509 | 0.950 | 0.035 | 0.062 | 4196 | 0.167 | 0.576 | 0.846 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | Pregnancy complications | -0.011 | 0.028 | 3917 | 0.173 | 0.691 | 0.991 | -0.055 | 0.028 | 4196 | 0.168 | 0.050 | 0.418 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | Birth complications | -0.024 | 0.031 | 3917 | 0.173 | 0.454 | 0.991 | -0.031 | 0.030 | 4196 | 0.167 | 0.294 | 0.833 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | Unplanned pregnancy | 0.000 | 0.033 | 3917 | 0.199 | 0.990 | 0.990 | 0.039 | 0.033 | 4196 | 0.172 | 0.227 | 0.983 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | C-Section | 0.002 | 0.030 | 3917 | 0.199 | 0.938 | 0.952 | -0.044 | 0.029 | 4196 | 0.172 | 0.128 | 0.405 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | Gestational Age | -0.043 | 0.041 | 3917 | 0.199 | 0.292 | 0.461 | 0.081 | 0.039 | 4196 | 0.173 | 0.037 | 0.085 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | Birth weight | 0.096 | 0.039 | 3917 | 0.200 | 0.015 | 0.058 | 0.077 | 0.039 | 4196 | 0.173 | 0.052 | 0.226 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | Tobacco use | 0.068 | 0.045 | 3917 | 0.199 | 0.127 | 0.694 | 0.040 | 0.044 | 4196 | 0.172 | 0.363 | 0.547 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | Alcohol use | -0.014 | 0.032 | 3917 | 0.199 | 0.657 | 0.883 | 0.023 | 0.032 | 4196 | 0.172 | 0.462 | 0.793 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | Marijuana use | 0.124 | 0.063 | 3917 | 0.199 | 0.051 | 0.793 | 0.139 | 0.063 | 4196 | 0.173 | 0.027 | 0.456 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | Pregnancy complications | -0.045 | 0.029 | 3917 | 0.199 | 0.113 | 0.403 | -0.035 | 0.028 | 4196 | 0.172 | 0.210 | 0.534 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | Birth complications | -0.013 | 0.032 | 3917 | 0.199 | 0.689 | 0.991 | -0.026 | 0.030 | 4196 | 0.172 | 0.379 | 0.904 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | Unplanned pregnancy | 0.025 | 0.035 | 3917 | 0.107 | 0.470 | 0.981 | -0.002 | 0.035 | 4196 | 0.099 | 0.956 | 0.992 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | C-Section | 0.073 | 0.032 | 3917 | 0.108 | 0.021 | 0.156 | 0.071 | 0.030 | 4196 | 0.100 | 0.020 | 0.192 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | Gestational Age | 0.096 | 0.044 | 3917 | 0.108 | 0.029 | 0.093 | 0.027 | 0.041 | 4196 | 0.099 | 0.520 | 0.632 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | Birth weight | 0.072 | 0.042 | 3917 | 0.108 | 0.088 | 0.200 | 0.033 | 0.042 | 4196 | 0.099 | 0.430 | 0.682 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | Tobacco use | -0.072 | 0.048 | 3917 | 0.107 | 0.133 | 0.694 | -0.082 | 0.047 | 4196 | 0.099 | 0.079 | 0.291 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | Alcohol use | -0.015 | 0.034 | 3917 | 0.106 | 0.664 | 0.883 | -0.049 | 0.034 | 4196 | 0.099 | 0.150 | 0.524 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | Marijuana use | 0.040 | 0.068 | 3917 | 0.107 | 0.551 | 0.950 | 0.019 | 0.067 | 4196 | 0.099 | 0.775 | 0.903 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | Pregnancy complications | 0.026 | 0.031 | 3917 | 0.107 | 0.405 | 0.788 | 0.062 | 0.030 | 4196 | 0.100 | 0.039 | 0.418 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | Birth complications | 0.004 | 0.034 | 3917 | 0.106 | 0.899 | 0.991 | -0.011 | 0.032 | 4196 | 0.099 | 0.737 | 0.951 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | Unplanned pregnancy | 0.020 | 0.029 | 3917 | 0.344 | 0.504 | 0.981 | 0.007 | 0.029 | 4196 | 0.353 | 0.810 | 0.983 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | C-Section | -0.034 | 0.026 | 3917 | 0.344 | 0.200 | 0.591 | -0.015 | 0.025 | 4196 | 0.353 | 0.543 | 0.742 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | Gestational Age | -0.090 | 0.036 | 3917 | 0.344 | 0.014 | 0.064 | -0.085 | 0.034 | 4196 | 0.355 | 0.013 | 0.032 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | Birth weight | 0.020 | 0.035 | 3917 | 0.343 | 0.566 | 0.700 | 0.005 | 0.035 | 4196 | 0.353 | 0.890 | 0.961 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | Tobacco use | 0.030 | 0.040 | 3917 | 0.344 | 0.453 | 0.727 | -0.004 | 0.039 | 4196 | 0.353 | 0.923 | 0.937 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | Alcohol use | 0.004 | 0.029 | 3917 | 0.344 | 0.880 | 0.955 | 0.006 | 0.028 | 4196 | 0.353 | 0.840 | 0.951 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | Marijuana use | 0.005 | 0.056 | 3917 | 0.344 | 0.933 | 0.968 | -0.033 | 0.056 | 4196 | 0.353 | 0.554 | 0.846 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | Pregnancy complications | -0.034 | 0.025 | 3917 | 0.344 | 0.182 | 0.618 | 0.029 | 0.025 | 4196 | 0.353 | 0.245 | 0.548 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | Birth complications | 0.035 | 0.028 | 3917 | 0.344 | 0.219 | 0.991 | -0.073 | 0.027 | 4196 | 0.354 | 0.006 | 0.387 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | Unplanned pregnancy | -0.008 | 0.031 | 3917 | 0.245 | 0.786 | 0.981 | 0.046 | 0.030 | 4196 | 0.236 | 0.135 | 0.983 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | C-Section | -0.064 | 0.027 | 3917 | 0.247 | 0.019 | 0.156 | 0.008 | 0.027 | 4196 | 0.236 | 0.778 | 0.867 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | Gestational Age | -0.077 | 0.038 | 3917 | 0.248 | 0.043 | 0.114 | -0.102 | 0.036 | 4196 | 0.240 | 0.005 | 0.016 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | Birth weight | -0.094 | 0.037 | 3917 | 0.249 | 0.010 | 0.044 | -0.042 | 0.037 | 4196 | 0.237 | 0.252 | 0.536 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | Tobacco use | -0.079 | 0.042 | 3917 | 0.246 | 0.059 | 0.694 | -0.068 | 0.041 | 4196 | 0.236 | 0.096 | 0.311 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | Alcohol use | 0.025 | 0.030 | 3917 | 0.245 | 0.394 | 0.703 | 0.034 | 0.030 | 4196 | 0.236 | 0.252 | 0.580 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | Marijuana use | 0.025 | 0.059 | 3917 | 0.245 | 0.669 | 0.950 | -0.149 | 0.059 | 4196 | 0.236 | 0.012 | 0.396 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | Pregnancy complications | -0.002 | 0.027 | 3917 | 0.245 | 0.947 | 0.991 | -0.030 | 0.026 | 4196 | 0.236 | 0.253 | 0.548 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | Birth complications | -0.032 | 0.030 | 3917 | 0.246 | 0.286 | 0.991 | -0.020 | 0.028 | 4196 | 0.236 | 0.479 | 0.904 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | Unplanned pregnancy | -0.012 | 0.029 | 3917 | 0.289 | 0.677 | 0.981 | -0.018 | 0.029 | 4196 | 0.285 | 0.549 | 0.983 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | C-Section | 0.012 | 0.027 | 3917 | 0.289 | 0.647 | 0.839 | 0.020 | 0.026 | 4196 | 0.285 | 0.438 | 0.703 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | Gestational Age | 0.021 | 0.037 | 3917 | 0.289 | 0.570 | 0.657 | 0.022 | 0.035 | 4196 | 0.284 | 0.539 | 0.643 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | Birth weight | 0.108 | 0.035 | 3917 | 0.287 | 0.002 | 0.016 | 0.027 | 0.036 | 4196 | 0.284 | 0.456 | 0.682 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | Tobacco use | -0.067 | 0.040 | 3917 | 0.290 | 0.097 | 0.694 | -0.062 | 0.040 | 4196 | 0.285 | 0.117 | 0.330 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | Alcohol use | -0.016 | 0.029 | 3917 | 0.289 | 0.584 | 0.867 | 0.027 | 0.029 | 4196 | 0.286 | 0.354 | 0.688 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | Marijuana use | -0.034 | 0.057 | 3917 | 0.289 | 0.545 | 0.950 | -0.019 | 0.057 | 4196 | 0.285 | 0.743 | 0.903 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | Pregnancy complications | 0.028 | 0.026 | 3917 | 0.289 | 0.272 | 0.675 | 0.021 | 0.026 | 4196 | 0.285 | 0.413 | 0.717 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | Birth complications | -0.009 | 0.029 | 3917 | 0.289 | 0.755 | 0.991 | 0.048 | 0.027 | 4196 | 0.285 | 0.077 | 0.611 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | Unplanned pregnancy | 0.026 | 0.032 | 3917 | 0.154 | 0.427 | 0.981 | 0.016 | 0.032 | 4196 | 0.160 | 0.625 | 0.983 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | C-Section | -0.006 | 0.029 | 3917 | 0.154 | 0.843 | 0.882 | -0.047 | 0.028 | 4196 | 0.161 | 0.099 | 0.374 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | Gestational Age | -0.190 | 0.040 | 3917 | 0.161 | 0.000 | 0.000 | -0.113 | 0.038 | 4196 | 0.164 | 0.003 | 0.011 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | Birth weight | -0.020 | 0.039 | 3917 | 0.155 | 0.609 | 0.740 | -0.103 | 0.039 | 4196 | 0.163 | 0.008 | 0.067 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | Tobacco use | -0.054 | 0.044 | 3917 | 0.155 | 0.225 | 0.727 | 0.039 | 0.043 | 4196 | 0.160 | 0.369 | 0.547 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | Alcohol use | -0.018 | 0.032 | 3917 | 0.154 | 0.561 | 0.867 | -0.032 | 0.032 | 4196 | 0.159 | 0.316 | 0.632 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | Marijuana use | -0.072 | 0.063 | 3917 | 0.155 | 0.249 | 0.950 | -0.084 | 0.063 | 4196 | 0.160 | 0.177 | 0.666 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | Pregnancy complications | 0.020 | 0.028 | 3917 | 0.154 | 0.469 | 0.851 | -0.063 | 0.028 | 4196 | 0.161 | 0.025 | 0.418 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | Birth complications | -0.019 | 0.032 | 3917 | 0.154 | 0.544 | 0.991 | -0.020 | 0.030 | 4196 | 0.160 | 0.499 | 0.904 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | Unplanned pregnancy | -0.004 | 0.029 | 3917 | 0.357 | 0.883 | 0.981 | 0.102 | 0.029 | 4196 | 0.336 | 0.000 | 0.034 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | C-Section | -0.046 | 0.026 | 3917 | 0.358 | 0.082 | 0.396 | -0.077 | 0.026 | 4196 | 0.335 | 0.003 | 0.100 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | Gestational Age | -0.030 | 0.037 | 3917 | 0.357 | 0.421 | 0.567 | 0.059 | 0.035 | 4196 | 0.335 | 0.092 | 0.159 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | Birth weight | 0.121 | 0.035 | 3917 | 0.359 | 0.001 | 0.006 | 0.042 | 0.035 | 4196 | 0.334 | 0.233 | 0.531 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | Tobacco use | 0.015 | 0.040 | 3917 | 0.357 | 0.701 | 0.866 | 0.053 | 0.040 | 4196 | 0.334 | 0.183 | 0.430 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | Alcohol use | 0.014 | 0.029 | 3917 | 0.357 | 0.620 | 0.879 | 0.036 | 0.029 | 4196 | 0.334 | 0.207 | 0.561 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | Marijuana use | 0.032 | 0.057 | 3917 | 0.357 | 0.575 | 0.950 | 0.059 | 0.057 | 4196 | 0.334 | 0.297 | 0.770 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | Pregnancy complications | -0.002 | 0.026 | 3917 | 0.357 | 0.940 | 0.991 | -0.028 | 0.025 | 4196 | 0.334 | 0.263 | 0.548 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | Birth complications | -0.004 | 0.029 | 3917 | 0.357 | 0.896 | 0.991 | 0.019 | 0.027 | 4196 | 0.334 | 0.491 | 0.904 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | Unplanned pregnancy | -0.015 | 0.027 | 3917 | 0.243 | 0.579 | 0.981 | -0.021 | 0.027 | 4196 | 0.254 | 0.434 | 0.983 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | C-Section | -0.066 | 0.024 | 3917 | 0.245 | 0.006 | 0.089 | -0.033 | 0.023 | 4196 | 0.255 | 0.157 | 0.426 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | Gestational Age | -0.063 | 0.033 | 3917 | 0.245 | 0.060 | 0.145 | -0.121 | 0.032 | 4196 | 0.261 | 0.000 | 0.001 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | Birth weight | -0.087 | 0.032 | 3917 | 0.247 | 0.007 | 0.032 | -0.075 | 0.032 | 4196 | 0.258 | 0.020 | 0.124 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | Tobacco use | -0.016 | 0.036 | 3917 | 0.243 | 0.652 | 0.866 | -0.037 | 0.036 | 4196 | 0.254 | 0.305 | 0.519 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | Alcohol use | -0.016 | 0.026 | 3917 | 0.242 | 0.545 | 0.867 | 0.017 | 0.026 | 4196 | 0.255 | 0.525 | 0.836 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | Marijuana use | 0.030 | 0.051 | 3917 | 0.243 | 0.565 | 0.950 | -0.051 | 0.051 | 4196 | 0.254 | 0.317 | 0.770 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | Pregnancy complications | -0.004 | 0.023 | 3917 | 0.243 | 0.852 | 0.991 | -0.020 | 0.023 | 4196 | 0.254 | 0.383 | 0.717 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | Birth complications | 0.015 | 0.026 | 3917 | 0.242 | 0.570 | 0.991 | 0.018 | 0.024 | 4196 | 0.254 | 0.467 | 0.904 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | Unplanned pregnancy | 0.011 | 0.032 | 3917 | 0.213 | 0.745 | 0.981 | 0.023 | 0.032 | 4196 | 0.196 | 0.462 | 0.983 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | C-Section | -0.020 | 0.029 | 3917 | 0.213 | 0.500 | 0.839 | -0.040 | 0.028 | 4196 | 0.196 | 0.155 | 0.426 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | Gestational Age | -0.114 | 0.041 | 3917 | 0.214 | 0.005 | 0.034 | -0.030 | 0.038 | 4196 | 0.196 | 0.436 | 0.570 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | Birth weight | 0.030 | 0.039 | 3917 | 0.212 | 0.435 | 0.616 | -0.091 | 0.038 | 4196 | 0.197 | 0.018 | 0.124 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | Tobacco use | 0.001 | 0.044 | 3917 | 0.213 | 0.987 | 0.987 | -0.039 | 0.043 | 4196 | 0.196 | 0.370 | 0.547 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | Alcohol use | -0.034 | 0.032 | 3917 | 0.213 | 0.281 | 0.659 | 0.047 | 0.031 | 4196 | 0.197 | 0.129 | 0.524 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | Marijuana use | 0.013 | 0.063 | 3917 | 0.213 | 0.840 | 0.968 | 0.044 | 0.062 | 4196 | 0.196 | 0.475 | 0.846 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | Pregnancy complications | -0.023 | 0.028 | 3917 | 0.213 | 0.408 | 0.788 | -0.022 | 0.028 | 4196 | 0.196 | 0.422 | 0.717 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | Birth complications | -0.003 | 0.032 | 3917 | 0.213 | 0.922 | 0.991 | -0.029 | 0.029 | 4196 | 0.196 | 0.319 | 0.868 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | Unplanned pregnancy | 0.016 | 0.030 | 3917 | 0.247 | 0.597 | 0.981 | 0.034 | 0.029 | 4196 | 0.262 | 0.239 | 0.983 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | C-Section | 0.019 | 0.027 | 3917 | 0.248 | 0.486 | 0.839 | 0.054 | 0.025 | 4196 | 0.262 | 0.031 | 0.236 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | Gestational Age | 0.056 | 0.037 | 3917 | 0.248 | 0.130 | 0.270 | -0.036 | 0.034 | 4196 | 0.262 | 0.285 | 0.407 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | Birth weight | 0.027 | 0.036 | 3917 | 0.247 | 0.455 | 0.619 | 0.023 | 0.035 | 4196 | 0.261 | 0.512 | 0.682 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | Tobacco use | 0.025 | 0.041 | 3917 | 0.247 | 0.534 | 0.790 | 0.023 | 0.039 | 4196 | 0.261 | 0.552 | 0.683 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | Alcohol use | 0.004 | 0.029 | 3917 | 0.248 | 0.898 | 0.955 | 0.047 | 0.028 | 4196 | 0.263 | 0.095 | 0.524 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | Marijuana use | 0.060 | 0.057 | 3917 | 0.248 | 0.294 | 0.950 | -0.087 | 0.055 | 4196 | 0.261 | 0.116 | 0.666 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | Pregnancy complications | 0.033 | 0.026 | 3917 | 0.248 | 0.205 | 0.619 | -0.021 | 0.025 | 4196 | 0.261 | 0.407 | 0.717 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | Birth complications | 0.033 | 0.029 | 3917 | 0.248 | 0.257 | 0.991 | 0.017 | 0.026 | 4196 | 0.261 | 0.520 | 0.904 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | Unplanned pregnancy | 0.005 | 0.027 | 3917 | 0.369 | 0.863 | 0.981 | -0.018 | 0.027 | 4196 | 0.365 | 0.500 | 0.983 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | C-Section | -0.051 | 0.025 | 3917 | 0.371 | 0.040 | 0.229 | -0.032 | 0.024 | 4196 | 0.366 | 0.173 | 0.431 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | Gestational Age | -0.192 | 0.034 | 3917 | 0.378 | 0.000 | 0.000 | -0.206 | 0.032 | 4196 | 0.376 | 0.000 | 0.000 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | Birth weight | -0.144 | 0.033 | 3917 | 0.376 | 0.000 | 0.001 | -0.123 | 0.033 | 4196 | 0.371 | 0.000 | 0.004 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | Tobacco use | -0.039 | 0.037 | 3917 | 0.369 | 0.295 | 0.727 | -0.058 | 0.037 | 4196 | 0.365 | 0.111 | 0.328 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | Alcohol use | 0.058 | 0.027 | 3917 | 0.371 | 0.029 | 0.365 | 0.039 | 0.027 | 4196 | 0.366 | 0.143 | 0.524 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | Marijuana use | 0.102 | 0.053 | 3917 | 0.370 | 0.053 | 0.793 | -0.008 | 0.053 | 4196 | 0.365 | 0.880 | 0.973 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | Pregnancy complications | -0.047 | 0.024 | 3917 | 0.371 | 0.049 | 0.371 | -0.028 | 0.024 | 4196 | 0.366 | 0.228 | 0.548 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | Birth complications | -0.077 | 0.027 | 3917 | 0.372 | 0.004 | 0.258 | -0.036 | 0.025 | 4196 | 0.366 | 0.153 | 0.744 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | Unplanned pregnancy | -0.010 | 0.034 | 3917 | 0.139 | 0.775 | 0.981 | -0.009 | 0.033 | 4196 | 0.189 | 0.791 | 0.983 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | C-Section | -0.021 | 0.031 | 3917 | 0.139 | 0.488 | 0.839 | 0.008 | 0.029 | 4196 | 0.189 | 0.774 | 0.867 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | Gestational Age | -0.072 | 0.043 | 3917 | 0.139 | 0.092 | 0.201 | 0.055 | 0.039 | 4196 | 0.190 | 0.155 | 0.246 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | Birth weight | 0.048 | 0.041 | 3917 | 0.139 | 0.241 | 0.431 | -0.043 | 0.039 | 4196 | 0.190 | 0.270 | 0.557 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | Tobacco use | -0.039 | 0.047 | 3917 | 0.139 | 0.400 | 0.727 | -0.012 | 0.044 | 4196 | 0.189 | 0.778 | 0.867 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | Alcohol use | -0.039 | 0.033 | 3917 | 0.139 | 0.249 | 0.627 | 0.043 | 0.032 | 4196 | 0.190 | 0.181 | 0.532 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | Marijuana use | 0.088 | 0.066 | 3917 | 0.139 | 0.181 | 0.950 | -0.042 | 0.063 | 4196 | 0.189 | 0.500 | 0.846 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | Pregnancy complications | 0.069 | 0.030 | 3917 | 0.140 | 0.020 | 0.268 | 0.050 | 0.028 | 4196 | 0.190 | 0.074 | 0.418 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | Birth complications | 0.011 | 0.033 | 3917 | 0.139 | 0.751 | 0.991 | 0.038 | 0.030 | 4196 | 0.190 | 0.209 | 0.779 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | Unplanned pregnancy | 0.007 | 0.033 | 3917 | 0.169 | 0.829 | 0.981 | 0.079 | 0.033 | 4196 | 0.179 | 0.016 | 0.528 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | C-Section | -0.010 | 0.029 | 3917 | 0.169 | 0.737 | 0.839 | 0.008 | 0.029 | 4196 | 0.177 | 0.769 | 0.867 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | Gestational Age | -0.045 | 0.041 | 3917 | 0.170 | 0.272 | 0.451 | -0.065 | 0.039 | 4196 | 0.179 | 0.093 | 0.159 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | Birth weight | 0.039 | 0.039 | 3917 | 0.168 | 0.314 | 0.496 | -0.047 | 0.039 | 4196 | 0.178 | 0.234 | 0.531 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | Tobacco use | -0.033 | 0.044 | 3917 | 0.169 | 0.461 | 0.727 | -0.049 | 0.044 | 4196 | 0.177 | 0.260 | 0.457 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | Alcohol use | -0.030 | 0.032 | 3917 | 0.169 | 0.354 | 0.703 | -0.005 | 0.032 | 4196 | 0.177 | 0.868 | 0.951 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | Marijuana use | 0.066 | 0.063 | 3917 | 0.169 | 0.296 | 0.950 | 0.080 | 0.063 | 4196 | 0.177 | 0.206 | 0.666 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | Pregnancy complications | -0.052 | 0.028 | 3917 | 0.170 | 0.068 | 0.372 | -0.008 | 0.028 | 4196 | 0.177 | 0.779 | 0.899 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | Birth complications | 0.000 | 0.032 | 3917 | 0.169 | 0.989 | 0.991 | -0.058 | 0.030 | 4196 | 0.178 | 0.054 | 0.611 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | Unplanned pregnancy | 0.013 | 0.034 | 3917 | 0.147 | 0.704 | 0.981 | -0.011 | 0.034 | 4196 | 0.131 | 0.751 | 0.983 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | C-Section | -0.015 | 0.031 | 3917 | 0.147 | 0.620 | 0.839 | 0.011 | 0.030 | 4196 | 0.131 | 0.718 | 0.856 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | Gestational Age | -0.032 | 0.042 | 3917 | 0.147 | 0.449 | 0.567 | -0.083 | 0.040 | 4196 | 0.133 | 0.039 | 0.085 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | Birth weight | 0.013 | 0.041 | 3917 | 0.147 | 0.750 | 0.811 | -0.084 | 0.041 | 4196 | 0.133 | 0.040 | 0.226 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | Tobacco use | 0.058 | 0.046 | 3917 | 0.147 | 0.211 | 0.727 | 0.065 | 0.045 | 4196 | 0.132 | 0.156 | 0.409 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | Alcohol use | -0.040 | 0.033 | 3917 | 0.147 | 0.232 | 0.608 | 0.008 | 0.033 | 4196 | 0.131 | 0.819 | 0.951 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | Marijuana use | 0.031 | 0.065 | 3917 | 0.147 | 0.637 | 0.950 | 0.017 | 0.066 | 4196 | 0.131 | 0.793 | 0.903 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | Pregnancy complications | -0.001 | 0.030 | 3917 | 0.147 | 0.975 | 0.991 | -0.026 | 0.029 | 4196 | 0.131 | 0.380 | 0.717 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | Birth complications | 0.027 | 0.033 | 3917 | 0.147 | 0.419 | 0.991 | 0.009 | 0.031 | 4196 | 0.131 | 0.763 | 0.951 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | Unplanned pregnancy | -0.008 | 0.033 | 3917 | 0.167 | 0.809 | 0.981 | -0.023 | 0.032 | 4196 | 0.201 | 0.469 | 0.983 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | C-Section | 0.039 | 0.030 | 3917 | 0.167 | 0.198 | 0.591 | 0.038 | 0.028 | 4196 | 0.200 | 0.177 | 0.431 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | Gestational Age | -0.087 | 0.042 | 3917 | 0.168 | 0.038 | 0.102 | -0.145 | 0.038 | 4196 | 0.205 | 0.000 | 0.001 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | Birth weight | 0.017 | 0.040 | 3917 | 0.167 | 0.670 | 0.786 | -0.075 | 0.039 | 4196 | 0.202 | 0.053 | 0.226 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | Tobacco use | -0.002 | 0.045 | 3917 | 0.167 | 0.958 | 0.987 | -0.029 | 0.043 | 4196 | 0.201 | 0.497 | 0.626 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | Alcohol use | 0.005 | 0.033 | 3917 | 0.167 | 0.878 | 0.955 | -0.008 | 0.031 | 4196 | 0.201 | 0.793 | 0.951 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | Marijuana use | -0.137 | 0.064 | 3917 | 0.168 | 0.033 | 0.793 | -0.041 | 0.062 | 4196 | 0.201 | 0.510 | 0.846 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | Pregnancy complications | 0.046 | 0.029 | 3917 | 0.167 | 0.111 | 0.403 | -0.001 | 0.028 | 4196 | 0.201 | 0.971 | 0.980 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | Birth complications | 0.021 | 0.032 | 3917 | 0.167 | 0.509 | 0.991 | -0.003 | 0.029 | 4196 | 0.201 | 0.923 | 0.951 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | Unplanned pregnancy | 0.015 | 0.035 | 3917 | 0.091 | 0.672 | 0.981 | -0.001 | 0.034 | 4196 | 0.091 | 0.970 | 0.992 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | C-Section | -0.013 | 0.032 | 3917 | 0.091 | 0.682 | 0.839 | -0.066 | 0.030 | 4196 | 0.093 | 0.029 | 0.236 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | Gestational Age | -0.106 | 0.044 | 3917 | 0.094 | 0.016 | 0.067 | -0.161 | 0.041 | 4196 | 0.097 | 0.000 | 0.001 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | Birth weight | -0.045 | 0.042 | 3917 | 0.092 | 0.282 | 0.468 | -0.118 | 0.042 | 4196 | 0.095 | 0.005 | 0.046 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | Tobacco use | 0.043 | 0.048 | 3917 | 0.091 | 0.374 | 0.727 | 0.061 | 0.046 | 4196 | 0.092 | 0.190 | 0.430 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | Alcohol use | -0.031 | 0.034 | 3917 | 0.091 | 0.368 | 0.703 | 0.053 | 0.034 | 4196 | 0.092 | 0.115 | 0.524 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | Marijuana use | 0.000 | 0.067 | 3917 | 0.091 | 0.996 | 0.996 | 0.041 | 0.067 | 4196 | 0.091 | 0.537 | 0.846 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | Pregnancy complications | -0.004 | 0.031 | 3917 | 0.091 | 0.891 | 0.991 | -0.044 | 0.030 | 4196 | 0.092 | 0.137 | 0.489 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | Birth complications | 0.013 | 0.034 | 3917 | 0.091 | 0.713 | 0.991 | -0.005 | 0.032 | 4196 | 0.091 | 0.870 | 0.951 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | Unplanned pregnancy | -0.011 | 0.034 | 3917 | 0.135 | 0.754 | 0.981 | -0.010 | 0.033 | 4196 | 0.139 | 0.750 | 0.983 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | C-Section | 0.026 | 0.030 | 3917 | 0.135 | 0.385 | 0.839 | -0.031 | 0.029 | 4196 | 0.139 | 0.289 | 0.561 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | Gestational Age | -0.044 | 0.042 | 3917 | 0.135 | 0.291 | 0.461 | 0.060 | 0.039 | 4196 | 0.139 | 0.124 | 0.200 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | Birth weight | 0.061 | 0.040 | 3917 | 0.135 | 0.127 | 0.247 | -0.028 | 0.039 | 4196 | 0.139 | 0.484 | 0.682 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | Tobacco use | -0.041 | 0.046 | 3917 | 0.135 | 0.372 | 0.727 | -0.023 | 0.044 | 4196 | 0.139 | 0.598 | 0.713 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | Alcohol use | -0.044 | 0.033 | 3917 | 0.136 | 0.175 | 0.568 | 0.003 | 0.032 | 4196 | 0.139 | 0.932 | 0.954 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | Marijuana use | 0.050 | 0.065 | 3917 | 0.135 | 0.440 | 0.950 | 0.075 | 0.063 | 4196 | 0.139 | 0.232 | 0.666 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | Pregnancy complications | -0.052 | 0.029 | 3917 | 0.136 | 0.073 | 0.372 | 0.004 | 0.028 | 4196 | 0.139 | 0.883 | 0.968 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | Birth complications | -0.047 | 0.033 | 3917 | 0.135 | 0.148 | 0.991 | -0.006 | 0.030 | 4196 | 0.139 | 0.837 | 0.951 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | Unplanned pregnancy | 0.013 | 0.030 | 3917 | 0.294 | 0.658 | 0.981 | 0.013 | 0.030 | 4196 | 0.276 | 0.671 | 0.983 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | C-Section | -0.011 | 0.027 | 3917 | 0.294 | 0.674 | 0.839 | -0.010 | 0.026 | 4196 | 0.276 | 0.711 | 0.856 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | Gestational Age | -0.099 | 0.037 | 3917 | 0.296 | 0.008 | 0.042 | -0.109 | 0.035 | 4196 | 0.280 | 0.002 | 0.008 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | Birth weight | -0.089 | 0.036 | 3917 | 0.297 | 0.013 | 0.053 | -0.071 | 0.036 | 4196 | 0.278 | 0.050 | 0.226 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | Tobacco use | -0.036 | 0.041 | 3917 | 0.294 | 0.379 | 0.727 | -0.071 | 0.040 | 4196 | 0.276 | 0.075 | 0.291 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | Alcohol use | -0.013 | 0.029 | 3917 | 0.294 | 0.662 | 0.883 | -0.030 | 0.029 | 4196 | 0.275 | 0.299 | 0.617 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | Marijuana use | -0.025 | 0.058 | 3917 | 0.294 | 0.658 | 0.950 | -0.058 | 0.058 | 4196 | 0.276 | 0.313 | 0.770 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | Pregnancy complications | -0.046 | 0.026 | 3917 | 0.295 | 0.077 | 0.372 | -0.049 | 0.026 | 4196 | 0.277 | 0.060 | 0.418 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | Birth complications | 0.023 | 0.029 | 3917 | 0.294 | 0.436 | 0.991 | -0.052 | 0.027 | 4196 | 0.277 | 0.060 | 0.611 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | Unplanned pregnancy | 0.017 | 0.031 | 3917 | 0.212 | 0.577 | 0.981 | 0.010 | 0.031 | 4196 | 0.205 | 0.743 | 0.983 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | C-Section | -0.022 | 0.028 | 3917 | 0.213 | 0.442 | 0.839 | -0.019 | 0.027 | 4196 | 0.205 | 0.484 | 0.731 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | Gestational Age | -0.005 | 0.039 | 3917 | 0.213 | 0.901 | 0.952 | -0.073 | 0.037 | 4196 | 0.207 | 0.048 | 0.097 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | Birth weight | -0.063 | 0.038 | 3917 | 0.215 | 0.092 | 0.202 | -0.070 | 0.038 | 4196 | 0.207 | 0.063 | 0.252 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | Tobacco use | -0.034 | 0.043 | 3917 | 0.213 | 0.430 | 0.727 | -0.127 | 0.042 | 4196 | 0.206 | 0.002 | 0.058 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | Alcohol use | 0.042 | 0.031 | 3917 | 0.213 | 0.173 | 0.568 | -0.047 | 0.030 | 4196 | 0.204 | 0.125 | 0.524 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | Marijuana use | -0.014 | 0.060 | 3917 | 0.213 | 0.821 | 0.968 | -0.086 | 0.060 | 4196 | 0.205 | 0.153 | 0.666 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | Pregnancy complications | -0.047 | 0.027 | 3917 | 0.214 | 0.084 | 0.372 | -0.020 | 0.027 | 4196 | 0.205 | 0.451 | 0.719 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | Birth complications | -0.015 | 0.030 | 3917 | 0.213 | 0.621 | 0.991 | -0.013 | 0.029 | 4196 | 0.205 | 0.656 | 0.951 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | Unplanned pregnancy | -0.044 | 0.030 | 3917 | 0.261 | 0.147 | 0.981 | 0.028 | 0.029 | 4196 | 0.264 | 0.342 | 0.983 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | C-Section | 0.009 | 0.027 | 3917 | 0.261 | 0.746 | 0.839 | 0.046 | 0.026 | 4196 | 0.264 | 0.072 | 0.337 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | Gestational Age | -0.050 | 0.038 | 3917 | 0.261 | 0.183 | 0.366 | -0.019 | 0.035 | 4196 | 0.264 | 0.591 | 0.681 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | Birth weight | 0.061 | 0.036 | 3917 | 0.260 | 0.096 | 0.205 | 0.022 | 0.035 | 4196 | 0.263 | 0.534 | 0.682 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | Tobacco use | -0.073 | 0.041 | 3917 | 0.261 | 0.076 | 0.694 | -0.089 | 0.040 | 4196 | 0.264 | 0.025 | 0.263 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | Alcohol use | 0.000 | 0.030 | 3917 | 0.261 | 0.989 | 0.989 | -0.010 | 0.029 | 4196 | 0.263 | 0.721 | 0.951 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | Marijuana use | -0.020 | 0.058 | 3917 | 0.261 | 0.726 | 0.950 | -0.019 | 0.057 | 4196 | 0.264 | 0.743 | 0.903 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | Pregnancy complications | 0.014 | 0.026 | 3917 | 0.260 | 0.589 | 0.977 | -0.028 | 0.025 | 4196 | 0.264 | 0.266 | 0.548 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | Birth complications | -0.041 | 0.030 | 3917 | 0.261 | 0.170 | 0.991 | -0.031 | 0.027 | 4196 | 0.264 | 0.244 | 0.806 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | Unplanned pregnancy | 0.027 | 0.028 | 3917 | 0.352 | 0.324 | 0.981 | -0.016 | 0.028 | 4196 | 0.357 | 0.568 | 0.983 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | C-Section | 0.008 | 0.025 | 3917 | 0.352 | 0.744 | 0.839 | -0.049 | 0.024 | 4196 | 0.358 | 0.043 | 0.294 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | Gestational Age | -0.031 | 0.035 | 3917 | 0.353 | 0.369 | 0.522 | -0.036 | 0.033 | 4196 | 0.358 | 0.279 | 0.407 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | Birth weight | -0.011 | 0.033 | 3917 | 0.353 | 0.745 | 0.811 | 0.003 | 0.033 | 4196 | 0.357 | 0.920 | 0.961 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | Tobacco use | -0.009 | 0.038 | 3917 | 0.353 | 0.811 | 0.919 | 0.029 | 0.037 | 4196 | 0.357 | 0.435 | 0.576 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | Alcohol use | 0.050 | 0.027 | 3917 | 0.353 | 0.064 | 0.395 | -0.005 | 0.027 | 4196 | 0.357 | 0.848 | 0.951 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | Marijuana use | 0.006 | 0.053 | 3917 | 0.352 | 0.908 | 0.968 | -0.030 | 0.053 | 4196 | 0.357 | 0.577 | 0.846 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | Pregnancy complications | 0.007 | 0.024 | 3917 | 0.352 | 0.768 | 0.991 | -0.017 | 0.024 | 4196 | 0.357 | 0.465 | 0.719 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | Birth complications | 0.029 | 0.027 | 3917 | 0.352 | 0.275 | 0.991 | -0.004 | 0.025 | 4196 | 0.357 | 0.890 | 0.951 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | Unplanned pregnancy | -0.013 | 0.033 | 3917 | 0.150 | 0.702 | 0.981 | 0.037 | 0.033 | 4196 | 0.146 | 0.261 | 0.983 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | C-Section | -0.021 | 0.030 | 3917 | 0.151 | 0.474 | 0.839 | -0.025 | 0.029 | 4196 | 0.146 | 0.384 | 0.703 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | Gestational Age | -0.063 | 0.041 | 3917 | 0.152 | 0.131 | 0.270 | -0.103 | 0.039 | 4196 | 0.149 | 0.008 | 0.026 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | Birth weight | -0.116 | 0.040 | 3917 | 0.154 | 0.004 | 0.020 | -0.040 | 0.040 | 4196 | 0.146 | 0.318 | 0.600 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | Tobacco use | -0.036 | 0.046 | 3917 | 0.151 | 0.423 | 0.727 | -0.055 | 0.044 | 4196 | 0.145 | 0.216 | 0.441 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | Alcohol use | -0.017 | 0.033 | 3917 | 0.150 | 0.599 | 0.867 | -0.005 | 0.032 | 4196 | 0.145 | 0.879 | 0.951 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | Marijuana use | -0.022 | 0.064 | 3917 | 0.150 | 0.726 | 0.950 | -0.005 | 0.064 | 4196 | 0.145 | 0.941 | 0.975 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | Pregnancy complications | -0.005 | 0.029 | 3917 | 0.150 | 0.864 | 0.991 | -0.004 | 0.028 | 4196 | 0.145 | 0.898 | 0.969 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | Birth complications | -0.028 | 0.032 | 3917 | 0.151 | 0.394 | 0.991 | 0.005 | 0.030 | 4196 | 0.145 | 0.879 | 0.951 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | Unplanned pregnancy | 0.031 | 0.031 | 3917 | 0.230 | 0.319 | 0.981 | 0.015 | 0.030 | 4196 | 0.237 | 0.622 | 0.983 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | C-Section | 0.015 | 0.028 | 3917 | 0.230 | 0.597 | 0.839 | -0.022 | 0.026 | 4196 | 0.237 | 0.401 | 0.703 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | Gestational Age | -0.026 | 0.038 | 3917 | 0.231 | 0.503 | 0.601 | -0.113 | 0.036 | 4196 | 0.241 | 0.002 | 0.007 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | Birth weight | 0.112 | 0.037 | 3917 | 0.229 | 0.002 | 0.016 | 0.030 | 0.036 | 4196 | 0.236 | 0.416 | 0.682 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | Tobacco use | 0.017 | 0.042 | 3917 | 0.230 | 0.692 | 0.866 | -0.066 | 0.041 | 4196 | 0.237 | 0.105 | 0.324 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | Alcohol use | -0.002 | 0.030 | 3917 | 0.230 | 0.941 | 0.955 | 0.056 | 0.030 | 4196 | 0.238 | 0.056 | 0.524 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | Marijuana use | 0.010 | 0.059 | 3917 | 0.230 | 0.861 | 0.968 | -0.105 | 0.058 | 4196 | 0.237 | 0.073 | 0.666 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | Pregnancy complications | 0.005 | 0.027 | 3917 | 0.230 | 0.863 | 0.991 | -0.018 | 0.026 | 4196 | 0.237 | 0.486 | 0.719 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | Birth complications | 0.016 | 0.030 | 3917 | 0.230 | 0.603 | 0.991 | -0.016 | 0.028 | 4196 | 0.237 | 0.566 | 0.929 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | Unplanned pregnancy | 0.014 | 0.028 | 3917 | 0.290 | 0.614 | 0.981 | -0.004 | 0.028 | 4196 | 0.310 | 0.892 | 0.992 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | C-Section | -0.007 | 0.025 | 3917 | 0.291 | 0.767 | 0.839 | 0.003 | 0.024 | 4196 | 0.310 | 0.887 | 0.914 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | Gestational Age | -0.079 | 0.035 | 3917 | 0.292 | 0.024 | 0.082 | -0.052 | 0.033 | 4196 | 0.312 | 0.111 | 0.183 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | Birth weight | 0.091 | 0.034 | 3917 | 0.289 | 0.007 | 0.032 | 0.025 | 0.033 | 4196 | 0.310 | 0.462 | 0.682 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | Tobacco use | -0.041 | 0.038 | 3917 | 0.291 | 0.291 | 0.727 | -0.054 | 0.037 | 4196 | 0.310 | 0.145 | 0.394 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | Alcohol use | 0.011 | 0.027 | 3917 | 0.291 | 0.694 | 0.885 | 0.031 | 0.027 | 4196 | 0.311 | 0.251 | 0.580 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | Marijuana use | 0.020 | 0.054 | 3917 | 0.290 | 0.715 | 0.950 | 0.050 | 0.053 | 4196 | 0.310 | 0.354 | 0.791 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | Pregnancy complications | -0.032 | 0.024 | 3917 | 0.291 | 0.191 | 0.618 | -0.017 | 0.024 | 4196 | 0.310 | 0.476 | 0.719 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | Birth complications | -0.005 | 0.027 | 3917 | 0.291 | 0.842 | 0.991 | -0.033 | 0.025 | 4196 | 0.311 | 0.198 | 0.779 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | Unplanned pregnancy | 0.014 | 0.030 | 3917 | 0.256 | 0.648 | 0.981 | 0.022 | 0.030 | 4196 | 0.244 | 0.474 | 0.983 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | C-Section | 0.019 | 0.027 | 3917 | 0.256 | 0.492 | 0.839 | -0.039 | 0.027 | 4196 | 0.244 | 0.137 | 0.405 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | Gestational Age | 0.018 | 0.038 | 3917 | 0.256 | 0.628 | 0.704 | -0.168 | 0.036 | 4196 | 0.251 | 0.000 | 0.000 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | Birth weight | -0.033 | 0.036 | 3917 | 0.257 | 0.364 | 0.538 | 0.053 | 0.036 | 4196 | 0.242 | 0.149 | 0.441 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | Tobacco use | -0.046 | 0.041 | 3917 | 0.256 | 0.264 | 0.727 | 0.033 | 0.041 | 4196 | 0.244 | 0.421 | 0.576 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | Alcohol use | -0.036 | 0.030 | 3917 | 0.256 | 0.220 | 0.608 | 0.045 | 0.030 | 4196 | 0.244 | 0.130 | 0.524 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | Marijuana use | 0.007 | 0.058 | 3917 | 0.256 | 0.910 | 0.968 | -0.023 | 0.058 | 4196 | 0.243 | 0.697 | 0.903 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | Pregnancy complications | -0.001 | 0.026 | 3917 | 0.256 | 0.961 | 0.991 | -0.048 | 0.026 | 4196 | 0.244 | 0.069 | 0.418 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | Birth complications | 0.009 | 0.029 | 3917 | 0.256 | 0.754 | 0.991 | -0.055 | 0.028 | 4196 | 0.245 | 0.047 | 0.611 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | Unplanned pregnancy | 0.035 | 0.028 | 3917 | 0.267 | 0.216 | 0.981 | 0.029 | 0.028 | 4196 | 0.288 | 0.296 | 0.983 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | C-Section | -0.039 | 0.025 | 3917 | 0.267 | 0.125 | 0.531 | -0.001 | 0.025 | 4196 | 0.287 | 0.968 | 0.983 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | Gestational Age | 0.001 | 0.035 | 3917 | 0.266 | 0.969 | 0.969 | -0.009 | 0.033 | 4196 | 0.287 | 0.797 | 0.846 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | Birth weight | 0.068 | 0.034 | 3917 | 0.265 | 0.045 | 0.126 | 0.042 | 0.034 | 4196 | 0.286 | 0.215 | 0.522 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | Tobacco use | 0.001 | 0.039 | 3917 | 0.266 | 0.987 | 0.987 | -0.084 | 0.038 | 4196 | 0.287 | 0.027 | 0.263 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | Alcohol use | -0.003 | 0.028 | 3917 | 0.266 | 0.900 | 0.955 | -0.003 | 0.027 | 4196 | 0.287 | 0.923 | 0.954 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | Marijuana use | 0.021 | 0.054 | 3917 | 0.266 | 0.697 | 0.950 | 0.005 | 0.054 | 4196 | 0.287 | 0.925 | 0.975 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | Pregnancy complications | 0.000 | 0.025 | 3917 | 0.266 | 0.995 | 0.995 | 0.039 | 0.024 | 4196 | 0.287 | 0.104 | 0.418 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | Birth complications | -0.003 | 0.028 | 3917 | 0.266 | 0.899 | 0.991 | 0.008 | 0.026 | 4196 | 0.287 | 0.749 | 0.951 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | Unplanned pregnancy | 0.002 | 0.032 | 3917 | 0.232 | 0.951 | 0.981 | -0.004 | 0.031 | 4196 | 0.223 | 0.888 | 0.992 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | C-Section | -0.013 | 0.029 | 3917 | 0.232 | 0.654 | 0.839 | -0.032 | 0.028 | 4196 | 0.224 | 0.243 | 0.500 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | Gestational Age | -0.070 | 0.040 | 3917 | 0.233 | 0.077 | 0.175 | -0.152 | 0.037 | 4196 | 0.229 | 0.000 | 0.001 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | Birth weight | -0.059 | 0.038 | 3917 | 0.233 | 0.125 | 0.247 | -0.050 | 0.038 | 4196 | 0.225 | 0.190 | 0.478 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | Tobacco use | -0.086 | 0.043 | 3917 | 0.233 | 0.049 | 0.694 | -0.079 | 0.042 | 4196 | 0.223 | 0.061 | 0.291 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | Alcohol use | 0.043 | 0.031 | 3917 | 0.233 | 0.166 | 0.568 | 0.024 | 0.031 | 4196 | 0.224 | 0.436 | 0.780 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | Marijuana use | -0.036 | 0.061 | 3917 | 0.232 | 0.555 | 0.950 | -0.017 | 0.061 | 4196 | 0.223 | 0.776 | 0.903 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | Pregnancy complications | -0.002 | 0.028 | 3917 | 0.232 | 0.952 | 0.991 | -0.003 | 0.027 | 4196 | 0.223 | 0.914 | 0.971 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | Birth complications | -0.041 | 0.031 | 3917 | 0.232 | 0.191 | 0.991 | -0.036 | 0.029 | 4196 | 0.224 | 0.218 | 0.779 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | Unplanned pregnancy | 0.017 | 0.034 | 3917 | 0.080 | 0.625 | 0.981 | 0.019 | 0.033 | 4196 | 0.124 | 0.561 | 0.983 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | C-Section | 0.034 | 0.031 | 3917 | 0.081 | 0.272 | 0.685 | 0.125 | 0.029 | 4196 | 0.128 | 0.000 | 0.001 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | Gestational Age | 0.033 | 0.043 | 3917 | 0.081 | 0.435 | 0.567 | -0.001 | 0.039 | 4196 | 0.124 | 0.982 | 0.982 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | Birth weight | 0.148 | 0.041 | 3917 | 0.081 | 0.000 | 0.006 | 0.035 | 0.040 | 4196 | 0.124 | 0.376 | 0.656 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | Tobacco use | 0.024 | 0.047 | 3917 | 0.080 | 0.614 | 0.866 | 0.036 | 0.045 | 4196 | 0.124 | 0.416 | 0.576 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | Alcohol use | 0.035 | 0.034 | 3917 | 0.081 | 0.291 | 0.659 | 0.078 | 0.032 | 4196 | 0.126 | 0.017 | 0.375 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | Marijuana use | 0.049 | 0.066 | 3917 | 0.080 | 0.458 | 0.950 | 0.004 | 0.064 | 4196 | 0.124 | 0.947 | 0.975 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | Pregnancy complications | 0.009 | 0.030 | 3917 | 0.080 | 0.769 | 0.991 | -0.008 | 0.029 | 4196 | 0.124 | 0.780 | 0.899 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | Birth complications | 0.001 | 0.033 | 3917 | 0.080 | 0.972 | 0.991 | 0.011 | 0.031 | 4196 | 0.124 | 0.730 | 0.951 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | Unplanned pregnancy | 0.029 | 0.035 | 3917 | 0.114 | 0.401 | 0.981 | 0.024 | 0.034 | 4196 | 0.128 | 0.489 | 0.983 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | C-Section | 0.043 | 0.032 | 3917 | 0.115 | 0.176 | 0.591 | 0.053 | 0.030 | 4196 | 0.129 | 0.076 | 0.337 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | Gestational Age | 0.118 | 0.044 | 3917 | 0.116 | 0.007 | 0.039 | 0.013 | 0.041 | 4196 | 0.128 | 0.741 | 0.817 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | Birth weight | 0.125 | 0.042 | 3917 | 0.116 | 0.003 | 0.018 | 0.107 | 0.041 | 4196 | 0.130 | 0.009 | 0.070 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | Tobacco use | 0.010 | 0.048 | 3917 | 0.114 | 0.837 | 0.933 | -0.014 | 0.046 | 4196 | 0.128 | 0.769 | 0.867 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | Alcohol use | -0.045 | 0.034 | 3917 | 0.115 | 0.192 | 0.584 | 0.047 | 0.033 | 4196 | 0.128 | 0.159 | 0.524 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | Marijuana use | 0.083 | 0.068 | 3917 | 0.115 | 0.218 | 0.950 | -0.047 | 0.066 | 4196 | 0.128 | 0.478 | 0.846 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | Pregnancy complications | 0.033 | 0.030 | 3917 | 0.115 | 0.278 | 0.675 | 0.020 | 0.030 | 4196 | 0.128 | 0.498 | 0.720 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | Birth complications | 0.008 | 0.034 | 3917 | 0.114 | 0.810 | 0.991 | 0.057 | 0.031 | 4196 | 0.128 | 0.072 | 0.611 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | Unplanned pregnancy | -0.003 | 0.033 | 3917 | 0.128 | 0.924 | 0.981 | -0.004 | 0.032 | 4196 | 0.123 | 0.896 | 0.992 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | C-Section | -0.076 | 0.029 | 3917 | 0.129 | 0.010 | 0.099 | -0.049 | 0.028 | 4196 | 0.124 | 0.086 | 0.344 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | Gestational Age | -0.113 | 0.041 | 3917 | 0.130 | 0.006 | 0.035 | -0.069 | 0.038 | 4196 | 0.126 | 0.072 | 0.129 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | Birth weight | 0.032 | 0.039 | 3917 | 0.127 | 0.420 | 0.608 | -0.040 | 0.039 | 4196 | 0.124 | 0.302 | 0.600 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | Tobacco use | 0.008 | 0.045 | 3917 | 0.127 | 0.865 | 0.949 | -0.042 | 0.044 | 4196 | 0.123 | 0.329 | 0.537 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | Alcohol use | 0.066 | 0.032 | 3917 | 0.129 | 0.038 | 0.365 | -0.007 | 0.032 | 4196 | 0.123 | 0.819 | 0.951 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | Marijuana use | -0.011 | 0.063 | 3917 | 0.128 | 0.864 | 0.968 | 0.000 | 0.062 | 4196 | 0.123 | 0.995 | 0.995 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | Pregnancy complications | -0.064 | 0.028 | 3917 | 0.129 | 0.024 | 0.268 | -0.039 | 0.028 | 4196 | 0.124 | 0.164 | 0.519 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | Birth complications | -0.007 | 0.032 | 3917 | 0.128 | 0.818 | 0.991 | 0.012 | 0.030 | 4196 | 0.123 | 0.678 | 0.951 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | Unplanned pregnancy | 0.051 | 0.029 | 3917 | 0.321 | 0.079 | 0.981 | 0.021 | 0.029 | 4196 | 0.321 | 0.457 | 0.983 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | C-Section | -0.076 | 0.026 | 3917 | 0.324 | 0.004 | 0.085 | -0.063 | 0.025 | 4196 | 0.322 | 0.013 | 0.173 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | Gestational Age | -0.107 | 0.036 | 3917 | 0.324 | 0.003 | 0.024 | -0.040 | 0.034 | 4196 | 0.321 | 0.240 | 0.362 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | Birth weight | -0.075 | 0.035 | 3917 | 0.323 | 0.032 | 0.106 | -0.121 | 0.035 | 4196 | 0.324 | 0.001 | 0.009 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | Tobacco use | -0.014 | 0.040 | 3917 | 0.321 | 0.726 | 0.881 | 0.014 | 0.039 | 4196 | 0.320 | 0.714 | 0.837 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | Alcohol use | -0.041 | 0.028 | 3917 | 0.321 | 0.146 | 0.562 | 0.008 | 0.028 | 4196 | 0.320 | 0.783 | 0.951 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | Marijuana use | -0.045 | 0.056 | 3917 | 0.321 | 0.422 | 0.950 | 0.043 | 0.056 | 4196 | 0.321 | 0.442 | 0.835 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | Pregnancy complications | -0.054 | 0.025 | 3917 | 0.322 | 0.032 | 0.313 | -0.043 | 0.025 | 4196 | 0.321 | 0.087 | 0.418 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | Birth complications | 0.000 | 0.028 | 3917 | 0.321 | 0.991 | 0.991 | -0.042 | 0.027 | 4196 | 0.321 | 0.118 | 0.668 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | Unplanned pregnancy | 0.031 | 0.035 | 3917 | 0.105 | 0.363 | 0.810 | 0.011 | 0.034 | 4196 | 0.087 | 0.758 | 0.915 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | C-Section | 0.014 | 0.031 | 3917 | 0.105 | 0.642 | 0.960 | 0.012 | 0.030 | 4196 | 0.087 | 0.682 | 0.768 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | Gestational Age | 0.159 | 0.043 | 3917 | 0.108 | 0.000 | 0.002 | 0.077 | 0.041 | 4196 | 0.088 | 0.058 | 0.367 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | Birth weight | -0.007 | 0.042 | 3917 | 0.105 | 0.867 | 0.913 | 0.031 | 0.041 | 4196 | 0.087 | 0.451 | 0.772 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | Tobacco use | -0.057 | 0.047 | 3917 | 0.106 | 0.230 | 0.519 | -0.064 | 0.046 | 4196 | 0.087 | 0.165 | 0.552 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | Alcohol use | 0.057 | 0.034 | 3917 | 0.106 | 0.093 | 0.443 | 0.051 | 0.033 | 4196 | 0.088 | 0.126 | 0.411 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | Marijuana use | 0.033 | 0.067 | 3917 | 0.105 | 0.625 | 0.886 | -0.085 | 0.066 | 4196 | 0.088 | 0.198 | 0.627 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | Pregnancy complications | 0.046 | 0.030 | 3917 | 0.106 | 0.124 | 0.598 | -0.022 | 0.030 | 4196 | 0.087 | 0.463 | 0.919 |
| smri_vol_scs_ltventriclelh | Subcortical volume left-lateral-ventricle | Birth complications | 0.060 | 0.034 | 3917 | 0.106 | 0.074 | 0.185 | 0.043 | 0.031 | 4196 | 0.088 | 0.174 | 0.306 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | Unplanned pregnancy | -0.028 | 0.027 | 3917 | 0.361 | 0.299 | 0.810 | -0.077 | 0.027 | 4196 | 0.328 | 0.004 | 0.089 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | C-Section | -0.030 | 0.024 | 3917 | 0.361 | 0.214 | 0.803 | -0.014 | 0.024 | 4196 | 0.328 | 0.570 | 0.768 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | Gestational Age | -0.113 | 0.034 | 3917 | 0.364 | 0.001 | 0.003 | -0.012 | 0.032 | 4196 | 0.328 | 0.711 | 0.792 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | Birth weight | 0.030 | 0.032 | 3917 | 0.360 | 0.359 | 0.448 | 0.018 | 0.033 | 4196 | 0.328 | 0.580 | 0.772 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | Tobacco use | -0.060 | 0.037 | 3917 | 0.361 | 0.103 | 0.519 | 0.063 | 0.037 | 4196 | 0.329 | 0.087 | 0.552 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | Alcohol use | 0.017 | 0.026 | 3917 | 0.361 | 0.512 | 0.853 | -0.029 | 0.026 | 4196 | 0.327 | 0.265 | 0.531 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | Marijuana use | 0.004 | 0.052 | 3917 | 0.361 | 0.941 | 0.974 | 0.036 | 0.052 | 4196 | 0.328 | 0.494 | 0.760 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | Pregnancy complications | -0.009 | 0.023 | 3917 | 0.361 | 0.714 | 0.821 | 0.031 | 0.023 | 4196 | 0.328 | 0.182 | 0.919 |
| smri_vol_scs_crbcortexlh | Subcortical volume left-cerebellum-cortex | Birth complications | -0.087 | 0.026 | 3917 | 0.364 | 0.001 | 0.018 | -0.006 | 0.025 | 4196 | 0.328 | 0.824 | 0.880 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | Unplanned pregnancy | -0.056 | 0.026 | 3917 | 0.452 | 0.033 | 0.327 | 0.001 | 0.026 | 4196 | 0.439 | 0.958 | 0.966 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | C-Section | -0.051 | 0.024 | 3917 | 0.453 | 0.031 | 0.312 | -0.021 | 0.023 | 4196 | 0.439 | 0.357 | 0.765 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | Gestational Age | -0.077 | 0.033 | 3917 | 0.454 | 0.019 | 0.062 | -0.056 | 0.031 | 4196 | 0.440 | 0.073 | 0.367 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | Birth weight | -0.064 | 0.032 | 3917 | 0.453 | 0.044 | 0.214 | -0.009 | 0.032 | 4196 | 0.439 | 0.785 | 0.872 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | Tobacco use | -0.024 | 0.036 | 3917 | 0.452 | 0.498 | 0.664 | 0.020 | 0.035 | 4196 | 0.439 | 0.580 | 0.743 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | Alcohol use | 0.000 | 0.026 | 3917 | 0.452 | 0.986 | 0.986 | 0.088 | 0.026 | 4196 | 0.441 | 0.001 | 0.013 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | Marijuana use | 0.002 | 0.051 | 3917 | 0.452 | 0.974 | 0.974 | 0.041 | 0.051 | 4196 | 0.439 | 0.424 | 0.707 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | Pregnancy complications | 0.011 | 0.023 | 3917 | 0.452 | 0.632 | 0.821 | -0.013 | 0.023 | 4196 | 0.439 | 0.571 | 0.948 |
| smri_vol_scs_tplh | Subcortical volume left-thalamus-proper | Birth complications | -0.032 | 0.026 | 3917 | 0.452 | 0.217 | 0.333 | -0.057 | 0.024 | 4196 | 0.440 | 0.019 | 0.116 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | Unplanned pregnancy | -0.001 | 0.030 | 3917 | 0.264 | 0.972 | 0.991 | -0.015 | 0.030 | 4196 | 0.244 | 0.619 | 0.915 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | C-Section | -0.012 | 0.027 | 3917 | 0.264 | 0.644 | 0.960 | -0.038 | 0.026 | 4196 | 0.244 | 0.152 | 0.578 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | Gestational Age | 0.033 | 0.037 | 3917 | 0.264 | 0.378 | 0.473 | 0.024 | 0.036 | 4196 | 0.244 | 0.499 | 0.737 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | Birth weight | -0.060 | 0.036 | 3917 | 0.265 | 0.092 | 0.232 | -0.078 | 0.036 | 4196 | 0.245 | 0.033 | 0.130 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | Tobacco use | -0.067 | 0.040 | 3917 | 0.265 | 0.097 | 0.519 | -0.052 | 0.041 | 4196 | 0.244 | 0.200 | 0.552 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | Alcohol use | -0.037 | 0.029 | 3917 | 0.264 | 0.200 | 0.570 | 0.010 | 0.029 | 4196 | 0.244 | 0.734 | 0.864 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | Marijuana use | -0.079 | 0.057 | 3917 | 0.265 | 0.169 | 0.886 | -0.025 | 0.058 | 4196 | 0.244 | 0.662 | 0.827 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | Pregnancy complications | 0.012 | 0.026 | 3917 | 0.264 | 0.634 | 0.821 | -0.017 | 0.026 | 4196 | 0.244 | 0.506 | 0.919 |
| smri_vol_scs_caudatelh | Subcortical volume left-caudate | Birth complications | -0.012 | 0.029 | 3917 | 0.264 | 0.686 | 0.722 | 0.006 | 0.028 | 4196 | 0.244 | 0.817 | 0.880 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | Unplanned pregnancy | 0.016 | 0.032 | 3917 | 0.193 | 0.621 | 0.868 | -0.041 | 0.032 | 4196 | 0.194 | 0.189 | 0.575 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | C-Section | -0.016 | 0.029 | 3917 | 0.193 | 0.585 | 0.960 | 0.011 | 0.028 | 4196 | 0.194 | 0.691 | 0.768 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | Gestational Age | -0.040 | 0.040 | 3917 | 0.193 | 0.321 | 0.458 | -0.020 | 0.038 | 4196 | 0.194 | 0.593 | 0.742 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | Birth weight | 0.012 | 0.038 | 3917 | 0.193 | 0.745 | 0.827 | 0.034 | 0.038 | 4196 | 0.194 | 0.368 | 0.772 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | Tobacco use | 0.052 | 0.043 | 3917 | 0.193 | 0.233 | 0.519 | 0.037 | 0.043 | 4196 | 0.194 | 0.384 | 0.668 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | Alcohol use | -0.049 | 0.031 | 3917 | 0.193 | 0.111 | 0.443 | 0.037 | 0.031 | 4196 | 0.194 | 0.233 | 0.518 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | Marijuana use | 0.015 | 0.061 | 3917 | 0.193 | 0.810 | 0.974 | 0.103 | 0.061 | 4196 | 0.194 | 0.090 | 0.447 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | Pregnancy complications | -0.075 | 0.028 | 3917 | 0.195 | 0.007 | 0.139 | -0.007 | 0.027 | 4196 | 0.194 | 0.797 | 0.953 |
| smri_vol_scs_putamenlh | Subcortical volume left-putamen | Birth complications | -0.024 | 0.031 | 3917 | 0.193 | 0.434 | 0.537 | -0.064 | 0.029 | 4196 | 0.194 | 0.028 | 0.116 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | Unplanned pregnancy | -0.032 | 0.031 | 3917 | 0.290 | 0.306 | 0.810 | 0.008 | 0.031 | 4196 | 0.251 | 0.796 | 0.915 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | C-Section | 0.041 | 0.028 | 3917 | 0.290 | 0.137 | 0.683 | 0.012 | 0.027 | 4196 | 0.251 | 0.653 | 0.768 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | Gestational Age | -0.083 | 0.039 | 3917 | 0.292 | 0.033 | 0.082 | -0.028 | 0.037 | 4196 | 0.251 | 0.445 | 0.737 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | Birth weight | -0.015 | 0.037 | 3917 | 0.290 | 0.686 | 0.807 | -0.020 | 0.038 | 4196 | 0.251 | 0.598 | 0.772 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | Tobacco use | -0.030 | 0.042 | 3917 | 0.290 | 0.481 | 0.664 | 0.033 | 0.042 | 4196 | 0.251 | 0.439 | 0.675 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | Alcohol use | -0.023 | 0.030 | 3917 | 0.290 | 0.449 | 0.817 | 0.019 | 0.031 | 4196 | 0.251 | 0.532 | 0.721 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | Marijuana use | 0.008 | 0.060 | 3917 | 0.290 | 0.897 | 0.974 | 0.052 | 0.061 | 4196 | 0.251 | 0.395 | 0.707 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | Pregnancy complications | 0.009 | 0.027 | 3917 | 0.290 | 0.738 | 0.821 | 0.004 | 0.027 | 4196 | 0.251 | 0.886 | 0.953 |
| smri_vol_scs_pallidumlh | Subcortical volume left-pallidum | Birth complications | -0.058 | 0.030 | 3917 | 0.291 | 0.055 | 0.182 | -0.042 | 0.029 | 4196 | 0.251 | 0.146 | 0.291 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | Unplanned pregnancy | 0.022 | 0.028 | 3917 | 0.368 | 0.446 | 0.810 | -0.006 | 0.028 | 4196 | 0.373 | 0.824 | 0.915 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | C-Section | 0.001 | 0.025 | 3917 | 0.368 | 0.982 | 0.982 | 0.008 | 0.025 | 4196 | 0.373 | 0.742 | 0.781 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | Gestational Age | -0.039 | 0.035 | 3917 | 0.368 | 0.272 | 0.419 | -0.070 | 0.034 | 4196 | 0.374 | 0.038 | 0.367 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | Birth weight | 0.034 | 0.034 | 3917 | 0.368 | 0.319 | 0.425 | 0.057 | 0.034 | 4196 | 0.374 | 0.093 | 0.311 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | Tobacco use | -0.023 | 0.039 | 3917 | 0.368 | 0.547 | 0.684 | -0.005 | 0.038 | 4196 | 0.373 | 0.887 | 0.934 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | Alcohol use | -0.013 | 0.028 | 3917 | 0.368 | 0.645 | 0.972 | 0.005 | 0.028 | 4196 | 0.373 | 0.870 | 0.928 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | Marijuana use | 0.071 | 0.055 | 3917 | 0.368 | 0.193 | 0.886 | 0.098 | 0.054 | 4196 | 0.374 | 0.072 | 0.447 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | Pregnancy complications | 0.031 | 0.025 | 3917 | 0.368 | 0.203 | 0.598 | 0.018 | 0.024 | 4196 | 0.373 | 0.452 | 0.919 |
| smri_vol_scs_hpuslh | Subcortical volume left-hippocampus | Birth complications | 0.016 | 0.028 | 3917 | 0.368 | 0.557 | 0.619 | -0.038 | 0.026 | 4196 | 0.374 | 0.142 | 0.291 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | Unplanned pregnancy | -0.036 | 0.030 | 3917 | 0.306 | 0.230 | 0.810 | 0.059 | 0.029 | 4196 | 0.301 | 0.044 | 0.296 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | C-Section | -0.012 | 0.027 | 3917 | 0.306 | 0.659 | 0.960 | -0.011 | 0.026 | 4196 | 0.301 | 0.658 | 0.768 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | Gestational Age | -0.034 | 0.037 | 3917 | 0.306 | 0.355 | 0.473 | -0.019 | 0.035 | 4196 | 0.300 | 0.593 | 0.742 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | Birth weight | 0.074 | 0.036 | 3917 | 0.308 | 0.039 | 0.214 | 0.098 | 0.035 | 4196 | 0.304 | 0.006 | 0.063 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | Tobacco use | -0.018 | 0.040 | 3917 | 0.306 | 0.656 | 0.729 | -0.033 | 0.039 | 4196 | 0.301 | 0.401 | 0.668 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | Alcohol use | -0.060 | 0.029 | 3917 | 0.307 | 0.038 | 0.254 | 0.019 | 0.029 | 4196 | 0.301 | 0.497 | 0.721 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | Marijuana use | -0.032 | 0.057 | 3917 | 0.306 | 0.580 | 0.886 | 0.092 | 0.057 | 4196 | 0.301 | 0.104 | 0.447 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | Pregnancy complications | -0.030 | 0.026 | 3917 | 0.306 | 0.237 | 0.598 | -0.002 | 0.025 | 4196 | 0.301 | 0.933 | 0.953 |
| smri_vol_scs_amygdalalh | Subcortical volume left-amygdala | Birth complications | -0.053 | 0.029 | 3917 | 0.306 | 0.066 | 0.185 | -0.026 | 0.027 | 4196 | 0.301 | 0.326 | 0.466 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | Unplanned pregnancy | 0.089 | 0.031 | 3917 | 0.137 | 0.004 | 0.087 | -0.036 | 0.030 | 4196 | 0.189 | 0.242 | 0.604 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | C-Section | -0.013 | 0.028 | 3917 | 0.137 | 0.631 | 0.960 | 0.034 | 0.027 | 4196 | 0.190 | 0.207 | 0.590 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | Gestational Age | -0.053 | 0.039 | 3917 | 0.138 | 0.176 | 0.307 | -0.047 | 0.036 | 4196 | 0.190 | 0.195 | 0.585 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | Birth weight | -0.043 | 0.037 | 3917 | 0.139 | 0.255 | 0.364 | -0.092 | 0.037 | 4196 | 0.192 | 0.012 | 0.063 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | Tobacco use | -0.047 | 0.042 | 3917 | 0.137 | 0.271 | 0.519 | -0.035 | 0.041 | 4196 | 0.189 | 0.393 | 0.668 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | Alcohol use | -0.072 | 0.030 | 3917 | 0.136 | 0.018 | 0.182 | -0.040 | 0.030 | 4196 | 0.189 | 0.179 | 0.447 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | Marijuana use | -0.038 | 0.060 | 3917 | 0.137 | 0.522 | 0.886 | -0.056 | 0.059 | 4196 | 0.189 | 0.342 | 0.685 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | Pregnancy complications | 0.018 | 0.027 | 3917 | 0.137 | 0.508 | 0.803 | -0.020 | 0.026 | 4196 | 0.190 | 0.452 | 0.919 |
| smri_vol_scs_aal | Subcortical volume left-accumbens-area | Birth complications | -0.059 | 0.030 | 3917 | 0.138 | 0.052 | 0.182 | -0.042 | 0.028 | 4196 | 0.190 | 0.136 | 0.291 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | Unplanned pregnancy | 0.000 | 0.026 | 3917 | 0.408 | 0.991 | 0.991 | -0.001 | 0.025 | 4196 | 0.427 | 0.966 | 0.966 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | C-Section | 0.024 | 0.023 | 3917 | 0.408 | 0.291 | 0.830 | 0.040 | 0.022 | 4196 | 0.427 | 0.067 | 0.444 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | Gestational Age | -0.048 | 0.032 | 3917 | 0.409 | 0.133 | 0.271 | -0.009 | 0.030 | 4196 | 0.427 | 0.753 | 0.792 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | Birth weight | 0.059 | 0.031 | 3917 | 0.407 | 0.054 | 0.214 | 0.029 | 0.030 | 4196 | 0.427 | 0.334 | 0.772 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | Tobacco use | -0.001 | 0.035 | 3917 | 0.408 | 0.973 | 0.973 | -0.069 | 0.034 | 4196 | 0.427 | 0.039 | 0.552 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | Alcohol use | 0.005 | 0.025 | 3917 | 0.408 | 0.849 | 0.986 | -0.036 | 0.024 | 4196 | 0.426 | 0.144 | 0.411 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | Marijuana use | -0.021 | 0.049 | 3917 | 0.408 | 0.665 | 0.886 | -0.058 | 0.048 | 4196 | 0.427 | 0.226 | 0.627 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | Pregnancy complications | 0.025 | 0.022 | 3917 | 0.408 | 0.269 | 0.598 | 0.044 | 0.022 | 4196 | 0.427 | 0.044 | 0.540 |
| smri_vol_scs_vedclh | Subcortical volume left-ventraldc | Birth complications | -0.041 | 0.025 | 3917 | 0.409 | 0.103 | 0.205 | -0.050 | 0.023 | 4196 | 0.428 | 0.029 | 0.116 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | Unplanned pregnancy | 0.029 | 0.035 | 3917 | 0.103 | 0.407 | 0.810 | 0.019 | 0.034 | 4196 | 0.091 | 0.573 | 0.915 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | C-Section | 0.003 | 0.031 | 3917 | 0.103 | 0.912 | 0.960 | 0.007 | 0.030 | 4196 | 0.091 | 0.810 | 0.810 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | Gestational Age | 0.146 | 0.043 | 3917 | 0.106 | 0.001 | 0.003 | 0.077 | 0.041 | 4196 | 0.092 | 0.057 | 0.367 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | Birth weight | -0.004 | 0.042 | 3917 | 0.103 | 0.915 | 0.915 | 0.018 | 0.041 | 4196 | 0.091 | 0.656 | 0.772 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | Tobacco use | -0.048 | 0.047 | 3917 | 0.104 | 0.308 | 0.519 | 0.024 | 0.046 | 4196 | 0.091 | 0.595 | 0.743 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | Alcohol use | 0.036 | 0.034 | 3917 | 0.104 | 0.284 | 0.711 | 0.068 | 0.033 | 4196 | 0.092 | 0.040 | 0.253 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | Marijuana use | 0.040 | 0.067 | 3917 | 0.103 | 0.549 | 0.886 | -0.018 | 0.066 | 4196 | 0.091 | 0.788 | 0.834 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | Pregnancy complications | 0.039 | 0.030 | 3917 | 0.104 | 0.191 | 0.598 | 0.022 | 0.030 | 4196 | 0.091 | 0.452 | 0.919 |
| smri_vol_scs_ltventriclerh | Subcortical volume right-lateral-ventricle | Birth complications | 0.066 | 0.034 | 3917 | 0.104 | 0.051 | 0.182 | 0.052 | 0.031 | 4196 | 0.092 | 0.098 | 0.281 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | Unplanned pregnancy | -0.030 | 0.027 | 3917 | 0.334 | 0.272 | 0.810 | -0.062 | 0.027 | 4196 | 0.302 | 0.022 | 0.215 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | C-Section | -0.046 | 0.025 | 3917 | 0.334 | 0.063 | 0.420 | -0.014 | 0.024 | 4196 | 0.302 | 0.561 | 0.768 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | Gestational Age | -0.130 | 0.034 | 3917 | 0.337 | 0.000 | 0.002 | -0.021 | 0.033 | 4196 | 0.302 | 0.516 | 0.737 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | Birth weight | 0.040 | 0.033 | 3917 | 0.333 | 0.221 | 0.340 | 0.018 | 0.033 | 4196 | 0.301 | 0.574 | 0.772 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | Tobacco use | -0.029 | 0.037 | 3917 | 0.333 | 0.428 | 0.658 | 0.042 | 0.037 | 4196 | 0.302 | 0.248 | 0.552 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | Alcohol use | 0.026 | 0.027 | 3917 | 0.334 | 0.330 | 0.732 | -0.018 | 0.027 | 4196 | 0.301 | 0.495 | 0.721 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | Marijuana use | 0.028 | 0.053 | 3917 | 0.333 | 0.598 | 0.886 | 0.026 | 0.052 | 4196 | 0.302 | 0.622 | 0.827 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | Pregnancy complications | -0.005 | 0.024 | 3917 | 0.333 | 0.844 | 0.880 | 0.010 | 0.024 | 4196 | 0.302 | 0.683 | 0.953 |
| smri_vol_scs_crbcortexrh | Subcortical volume right-cerebellum-cortex | Birth complications | -0.081 | 0.027 | 3917 | 0.336 | 0.002 | 0.024 | -0.005 | 0.025 | 4196 | 0.302 | 0.836 | 0.880 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | Unplanned pregnancy | -0.017 | 0.025 | 3917 | 0.460 | 0.516 | 0.835 | 0.012 | 0.026 | 4196 | 0.439 | 0.644 | 0.915 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | C-Section | -0.060 | 0.023 | 3917 | 0.462 | 0.009 | 0.177 | -0.031 | 0.023 | 4196 | 0.439 | 0.173 | 0.578 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | Gestational Age | -0.132 | 0.032 | 3917 | 0.464 | 0.000 | 0.001 | -0.046 | 0.031 | 4196 | 0.440 | 0.135 | 0.538 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | Birth weight | -0.064 | 0.031 | 3917 | 0.462 | 0.035 | 0.214 | -0.014 | 0.031 | 4196 | 0.439 | 0.656 | 0.772 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | Tobacco use | -0.035 | 0.035 | 3917 | 0.460 | 0.312 | 0.519 | -0.013 | 0.035 | 4196 | 0.438 | 0.706 | 0.831 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | Alcohol use | 0.001 | 0.025 | 3917 | 0.460 | 0.969 | 0.986 | 0.050 | 0.025 | 4196 | 0.440 | 0.051 | 0.253 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | Marijuana use | -0.010 | 0.049 | 3917 | 0.460 | 0.845 | 0.974 | -0.002 | 0.050 | 4196 | 0.438 | 0.968 | 0.968 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | Pregnancy complications | -0.017 | 0.022 | 3917 | 0.461 | 0.440 | 0.799 | 0.004 | 0.023 | 4196 | 0.438 | 0.873 | 0.953 |
| smri_vol_scs_tprh | Subcortical volume right-thalamus-proper | Birth complications | -0.041 | 0.025 | 3917 | 0.461 | 0.099 | 0.205 | -0.062 | 0.024 | 4196 | 0.440 | 0.010 | 0.098 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | Unplanned pregnancy | 0.018 | 0.030 | 3917 | 0.269 | 0.542 | 0.835 | -0.020 | 0.029 | 4196 | 0.262 | 0.503 | 0.915 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | C-Section | -0.004 | 0.027 | 3917 | 0.269 | 0.882 | 0.960 | -0.025 | 0.026 | 4196 | 0.262 | 0.328 | 0.765 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | Gestational Age | 0.027 | 0.037 | 3917 | 0.269 | 0.469 | 0.545 | 0.024 | 0.035 | 4196 | 0.262 | 0.499 | 0.737 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | Birth weight | -0.079 | 0.035 | 3917 | 0.271 | 0.025 | 0.214 | -0.088 | 0.035 | 4196 | 0.264 | 0.013 | 0.063 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | Tobacco use | -0.052 | 0.040 | 3917 | 0.270 | 0.192 | 0.519 | -0.057 | 0.040 | 4196 | 0.262 | 0.151 | 0.552 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | Alcohol use | -0.024 | 0.029 | 3917 | 0.269 | 0.405 | 0.811 | -0.012 | 0.029 | 4196 | 0.262 | 0.670 | 0.837 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | Marijuana use | -0.091 | 0.057 | 3917 | 0.270 | 0.107 | 0.886 | -0.021 | 0.056 | 4196 | 0.262 | 0.712 | 0.834 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | Pregnancy complications | 0.029 | 0.026 | 3917 | 0.269 | 0.252 | 0.598 | -0.013 | 0.025 | 4196 | 0.262 | 0.616 | 0.948 |
| smri_vol_scs_caudaterh | Subcortical volume right-caudate | Birth complications | -0.006 | 0.029 | 3917 | 0.269 | 0.831 | 0.831 | 0.002 | 0.027 | 4196 | 0.262 | 0.939 | 0.939 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | Unplanned pregnancy | 0.006 | 0.031 | 3917 | 0.235 | 0.855 | 0.991 | -0.017 | 0.030 | 4196 | 0.242 | 0.565 | 0.915 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | C-Section | -0.011 | 0.028 | 3917 | 0.235 | 0.702 | 0.960 | 0.038 | 0.027 | 4196 | 0.242 | 0.154 | 0.578 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | Gestational Age | -0.052 | 0.039 | 3917 | 0.236 | 0.184 | 0.307 | 0.024 | 0.036 | 4196 | 0.242 | 0.512 | 0.737 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | Birth weight | 0.048 | 0.037 | 3917 | 0.235 | 0.199 | 0.332 | 0.038 | 0.037 | 4196 | 0.242 | 0.305 | 0.772 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | Tobacco use | 0.058 | 0.042 | 3917 | 0.235 | 0.172 | 0.519 | 0.061 | 0.041 | 4196 | 0.242 | 0.135 | 0.552 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | Alcohol use | -0.044 | 0.030 | 3917 | 0.235 | 0.147 | 0.492 | 0.024 | 0.030 | 4196 | 0.242 | 0.428 | 0.721 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | Marijuana use | 0.032 | 0.060 | 3917 | 0.235 | 0.596 | 0.886 | 0.093 | 0.059 | 4196 | 0.242 | 0.112 | 0.447 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | Pregnancy complications | -0.050 | 0.027 | 3917 | 0.236 | 0.065 | 0.433 | -0.002 | 0.026 | 4196 | 0.241 | 0.953 | 0.953 |
| smri_vol_scs_putamenrh | Subcortical volume right-putamen | Birth complications | -0.029 | 0.030 | 3917 | 0.236 | 0.341 | 0.455 | -0.077 | 0.028 | 4196 | 0.242 | 0.006 | 0.098 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | Unplanned pregnancy | 0.001 | 0.031 | 3917 | 0.259 | 0.982 | 0.991 | -0.056 | 0.031 | 4196 | 0.236 | 0.072 | 0.361 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | C-Section | 0.004 | 0.028 | 3917 | 0.259 | 0.879 | 0.960 | -0.013 | 0.027 | 4196 | 0.236 | 0.636 | 0.768 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | Gestational Age | -0.057 | 0.038 | 3917 | 0.261 | 0.136 | 0.271 | -0.042 | 0.037 | 4196 | 0.236 | 0.263 | 0.585 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | Birth weight | -0.063 | 0.037 | 3917 | 0.261 | 0.087 | 0.232 | -0.021 | 0.038 | 4196 | 0.236 | 0.572 | 0.772 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | Tobacco use | -0.046 | 0.042 | 3917 | 0.259 | 0.270 | 0.519 | 0.011 | 0.042 | 4196 | 0.236 | 0.797 | 0.886 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | Alcohol use | 0.004 | 0.030 | 3917 | 0.259 | 0.886 | 0.986 | 0.051 | 0.031 | 4196 | 0.237 | 0.094 | 0.374 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | Marijuana use | -0.040 | 0.059 | 3917 | 0.259 | 0.498 | 0.886 | 0.115 | 0.061 | 4196 | 0.236 | 0.059 | 0.447 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | Pregnancy complications | -0.017 | 0.027 | 3917 | 0.260 | 0.522 | 0.803 | 0.019 | 0.027 | 4196 | 0.235 | 0.494 | 0.919 |
| smri_vol_scs_pallidumrh | Subcortical volume right-pallidum | Birth complications | -0.068 | 0.030 | 3917 | 0.261 | 0.023 | 0.156 | -0.054 | 0.029 | 4196 | 0.236 | 0.062 | 0.206 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | Unplanned pregnancy | 0.025 | 0.029 | 3917 | 0.361 | 0.389 | 0.810 | -0.011 | 0.029 | 4196 | 0.348 | 0.695 | 0.915 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | C-Section | -0.024 | 0.026 | 3917 | 0.361 | 0.350 | 0.875 | 0.022 | 0.025 | 4196 | 0.348 | 0.382 | 0.765 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | Gestational Age | -0.078 | 0.036 | 3917 | 0.362 | 0.031 | 0.082 | -0.040 | 0.035 | 4196 | 0.348 | 0.244 | 0.585 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | Birth weight | 0.047 | 0.035 | 3917 | 0.360 | 0.175 | 0.318 | 0.025 | 0.035 | 4196 | 0.348 | 0.474 | 0.772 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | Tobacco use | -0.057 | 0.039 | 3917 | 0.361 | 0.146 | 0.519 | 0.002 | 0.039 | 4196 | 0.348 | 0.950 | 0.950 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | Alcohol use | 0.009 | 0.028 | 3917 | 0.361 | 0.759 | 0.986 | 0.003 | 0.028 | 4196 | 0.348 | 0.928 | 0.928 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | Marijuana use | 0.026 | 0.056 | 3917 | 0.361 | 0.635 | 0.886 | 0.028 | 0.056 | 4196 | 0.348 | 0.614 | 0.827 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | Pregnancy complications | 0.011 | 0.025 | 3917 | 0.361 | 0.671 | 0.821 | -0.025 | 0.025 | 4196 | 0.348 | 0.311 | 0.919 |
| smri_vol_scs_hpusrh | Subcortical volume right-hippocampus | Birth complications | -0.030 | 0.028 | 3917 | 0.361 | 0.287 | 0.410 | -0.035 | 0.027 | 4196 | 0.348 | 0.184 | 0.306 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | Unplanned pregnancy | 0.033 | 0.030 | 3917 | 0.316 | 0.274 | 0.810 | 0.023 | 0.030 | 4196 | 0.328 | 0.442 | 0.915 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | C-Section | 0.003 | 0.027 | 3917 | 0.316 | 0.909 | 0.960 | 0.018 | 0.026 | 4196 | 0.328 | 0.481 | 0.768 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | Gestational Age | -0.024 | 0.038 | 3917 | 0.316 | 0.518 | 0.545 | -0.012 | 0.035 | 4196 | 0.328 | 0.732 | 0.792 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | Birth weight | 0.059 | 0.036 | 3917 | 0.317 | 0.104 | 0.232 | 0.096 | 0.036 | 4196 | 0.329 | 0.007 | 0.063 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | Tobacco use | -0.006 | 0.041 | 3917 | 0.316 | 0.893 | 0.940 | -0.024 | 0.040 | 4196 | 0.328 | 0.544 | 0.743 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | Alcohol use | -0.002 | 0.030 | 3917 | 0.316 | 0.955 | 0.986 | 0.083 | 0.029 | 4196 | 0.329 | 0.004 | 0.042 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | Marijuana use | 0.037 | 0.058 | 3917 | 0.316 | 0.522 | 0.886 | 0.058 | 0.057 | 4196 | 0.328 | 0.309 | 0.685 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | Pregnancy complications | -0.025 | 0.026 | 3917 | 0.317 | 0.333 | 0.666 | 0.005 | 0.026 | 4196 | 0.328 | 0.849 | 0.953 |
| smri_vol_scs_amygdalarh | Subcortical volume right-amygdala | Birth complications | -0.044 | 0.029 | 3917 | 0.317 | 0.138 | 0.250 | -0.007 | 0.027 | 4196 | 0.328 | 0.796 | 0.880 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | Unplanned pregnancy | -0.008 | 0.032 | 3917 | 0.196 | 0.815 | 0.991 | -0.039 | 0.031 | 4196 | 0.222 | 0.201 | 0.575 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | C-Section | -0.009 | 0.029 | 3917 | 0.196 | 0.746 | 0.960 | 0.059 | 0.027 | 4196 | 0.224 | 0.028 | 0.391 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | Gestational Age | -0.027 | 0.040 | 3917 | 0.196 | 0.497 | 0.545 | 0.008 | 0.037 | 4196 | 0.222 | 0.824 | 0.824 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | Birth weight | -0.059 | 0.039 | 3917 | 0.197 | 0.132 | 0.263 | -0.004 | 0.037 | 4196 | 0.222 | 0.913 | 0.954 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | Tobacco use | -0.081 | 0.044 | 3917 | 0.197 | 0.067 | 0.519 | -0.052 | 0.041 | 4196 | 0.222 | 0.206 | 0.552 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | Alcohol use | -0.076 | 0.032 | 3917 | 0.197 | 0.016 | 0.182 | -0.018 | 0.030 | 4196 | 0.222 | 0.541 | 0.721 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | Marijuana use | -0.076 | 0.062 | 3917 | 0.196 | 0.224 | 0.886 | -0.016 | 0.059 | 4196 | 0.222 | 0.793 | 0.834 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | Pregnancy complications | 0.004 | 0.028 | 3917 | 0.196 | 0.880 | 0.880 | -0.021 | 0.027 | 4196 | 0.223 | 0.438 | 0.919 |
| smri_vol_scs_aar | Subcortical volume right-accumbens area | Birth complications | -0.023 | 0.031 | 3917 | 0.196 | 0.456 | 0.537 | -0.014 | 0.028 | 4196 | 0.222 | 0.622 | 0.830 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | Unplanned pregnancy | 0.012 | 0.026 | 3917 | 0.431 | 0.651 | 0.868 | -0.043 | 0.025 | 4196 | 0.428 | 0.092 | 0.366 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | C-Section | 0.027 | 0.023 | 3917 | 0.431 | 0.241 | 0.803 | 0.046 | 0.022 | 4196 | 0.429 | 0.039 | 0.391 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | Gestational Age | -0.001 | 0.032 | 3917 | 0.431 | 0.966 | 0.966 | 0.036 | 0.030 | 4196 | 0.428 | 0.240 | 0.585 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | Birth weight | 0.050 | 0.031 | 3917 | 0.430 | 0.103 | 0.232 | 0.002 | 0.031 | 4196 | 0.428 | 0.954 | 0.954 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | Tobacco use | 0.018 | 0.035 | 3917 | 0.431 | 0.613 | 0.721 | -0.041 | 0.034 | 4196 | 0.428 | 0.225 | 0.552 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | Alcohol use | -0.010 | 0.025 | 3917 | 0.431 | 0.680 | 0.972 | -0.003 | 0.025 | 4196 | 0.428 | 0.909 | 0.928 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | Marijuana use | 0.024 | 0.049 | 3917 | 0.431 | 0.625 | 0.886 | -0.056 | 0.049 | 4196 | 0.428 | 0.251 | 0.627 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | Pregnancy complications | 0.045 | 0.022 | 3917 | 0.431 | 0.043 | 0.433 | 0.042 | 0.022 | 4196 | 0.429 | 0.054 | 0.540 |
| smri_vol_scs_vedcrh | Subcortical volume right-ventraldc | Birth complications | -0.033 | 0.025 | 3917 | 0.432 | 0.184 | 0.306 | -0.028 | 0.023 | 4196 | 0.429 | 0.225 | 0.346 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | Unplanned pregnancy | -0.003 | 0.032 | 3917 | 0.250 | 0.930 | 0.979 | 0.027 | 0.032 | 4196 | 0.240 | 0.387 | 0.912 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | C-Section | -0.092 | 0.029 | 3917 | 0.253 | 0.002 | 0.023 | -0.095 | 0.028 | 4196 | 0.242 | 0.001 | 0.011 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | Gestational Age | -0.150 | 0.040 | 3917 | 0.253 | 0.000 | 0.004 | -0.074 | 0.038 | 4196 | 0.241 | 0.048 | 0.154 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | Birth weight | -0.092 | 0.039 | 3917 | 0.252 | 0.017 | 0.055 | -0.038 | 0.038 | 4196 | 0.241 | 0.320 | 0.588 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | Tobacco use | -0.019 | 0.044 | 3917 | 0.250 | 0.663 | 0.844 | -0.020 | 0.042 | 4196 | 0.240 | 0.638 | 0.887 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | Alcohol use | 0.030 | 0.032 | 3917 | 0.251 | 0.344 | 0.896 | -0.045 | 0.031 | 4196 | 0.240 | 0.143 | 0.635 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | Marijuana use | 0.022 | 0.062 | 3917 | 0.250 | 0.721 | 0.859 | 0.005 | 0.061 | 4196 | 0.240 | 0.938 | 1.000 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | Pregnancy complications | 0.000 | 0.028 | 3917 | 0.250 | 0.990 | 0.990 | 0.005 | 0.027 | 4196 | 0.240 | 0.868 | 0.938 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | Birth complications | -0.082 | 0.031 | 3917 | 0.252 | 0.009 | 0.310 | 0.010 | 0.029 | 4196 | 0.240 | 0.731 | 0.878 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | Unplanned pregnancy | -0.012 | 0.035 | 3917 | 0.070 | 0.728 | 0.979 | -0.028 | 0.035 | 4196 | 0.063 | 0.413 | 0.912 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | C-Section | 0.061 | 0.032 | 3917 | 0.072 | 0.054 | 0.218 | 0.069 | 0.030 | 4196 | 0.065 | 0.024 | 0.101 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | Gestational Age | 0.099 | 0.044 | 3917 | 0.072 | 0.025 | 0.096 | 0.074 | 0.041 | 4196 | 0.065 | 0.071 | 0.208 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | Birth weight | 0.005 | 0.042 | 3917 | 0.070 | 0.907 | 0.932 | -0.003 | 0.042 | 4196 | 0.063 | 0.934 | 0.948 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | Tobacco use | -0.071 | 0.048 | 3917 | 0.071 | 0.143 | 0.645 | -0.095 | 0.047 | 4196 | 0.064 | 0.041 | 0.379 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | Alcohol use | -0.014 | 0.035 | 3917 | 0.071 | 0.694 | 0.979 | -0.043 | 0.034 | 4196 | 0.064 | 0.201 | 0.718 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | Marijuana use | -0.112 | 0.068 | 3917 | 0.071 | 0.100 | 0.774 | -0.177 | 0.067 | 4196 | 0.065 | 0.008 | 0.286 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | Pregnancy complications | 0.045 | 0.031 | 3917 | 0.071 | 0.141 | 0.392 | 0.042 | 0.030 | 4196 | 0.064 | 0.162 | 0.393 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | Birth complications | 0.014 | 0.035 | 3917 | 0.071 | 0.690 | 0.884 | 0.033 | 0.032 | 4196 | 0.063 | 0.298 | 0.802 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | Unplanned pregnancy | -0.012 | 0.028 | 3917 | 0.397 | 0.664 | 0.979 | 0.016 | 0.027 | 4196 | 0.417 | 0.556 | 0.912 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | C-Section | 0.026 | 0.025 | 3917 | 0.397 | 0.297 | 0.557 | -0.012 | 0.023 | 4196 | 0.417 | 0.620 | 0.874 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | Gestational Age | -0.036 | 0.035 | 3917 | 0.398 | 0.297 | 0.513 | -0.027 | 0.032 | 4196 | 0.417 | 0.392 | 0.606 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | Birth weight | -0.030 | 0.033 | 3917 | 0.398 | 0.367 | 0.531 | 0.021 | 0.032 | 4196 | 0.417 | 0.513 | 0.775 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | Tobacco use | -0.001 | 0.038 | 3917 | 0.398 | 0.970 | 0.985 | -0.047 | 0.036 | 4196 | 0.417 | 0.192 | 0.492 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | Alcohol use | -0.021 | 0.027 | 3917 | 0.397 | 0.436 | 0.964 | -0.039 | 0.026 | 4196 | 0.417 | 0.131 | 0.635 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | Marijuana use | -0.127 | 0.053 | 3917 | 0.399 | 0.017 | 0.392 | -0.001 | 0.051 | 4196 | 0.417 | 0.988 | 1.000 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | Pregnancy complications | -0.020 | 0.024 | 3917 | 0.398 | 0.404 | 0.789 | -0.008 | 0.023 | 4196 | 0.417 | 0.741 | 0.900 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | Birth complications | -0.001 | 0.027 | 3917 | 0.398 | 0.975 | 0.975 | 0.008 | 0.024 | 4196 | 0.417 | 0.736 | 0.878 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | Unplanned pregnancy | -0.029 | 0.030 | 3917 | 0.312 | 0.333 | 0.979 | 0.014 | 0.030 | 4196 | 0.310 | 0.644 | 0.912 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | C-Section | -0.047 | 0.027 | 3917 | 0.312 | 0.082 | 0.248 | -0.003 | 0.026 | 4196 | 0.310 | 0.905 | 0.985 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | Gestational Age | 0.046 | 0.038 | 3917 | 0.312 | 0.230 | 0.424 | 0.117 | 0.035 | 4196 | 0.312 | 0.001 | 0.013 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | Birth weight | 0.103 | 0.036 | 3917 | 0.313 | 0.005 | 0.024 | -0.021 | 0.036 | 4196 | 0.310 | 0.556 | 0.794 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | Tobacco use | 0.022 | 0.041 | 3917 | 0.312 | 0.596 | 0.844 | 0.074 | 0.040 | 4196 | 0.311 | 0.063 | 0.427 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | Alcohol use | -0.064 | 0.030 | 3917 | 0.313 | 0.032 | 0.510 | 0.045 | 0.029 | 4196 | 0.310 | 0.119 | 0.635 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | Marijuana use | -0.094 | 0.059 | 3917 | 0.312 | 0.109 | 0.774 | 0.137 | 0.057 | 4196 | 0.311 | 0.017 | 0.385 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | Pregnancy complications | -0.046 | 0.026 | 3917 | 0.312 | 0.080 | 0.342 | -0.014 | 0.026 | 4196 | 0.310 | 0.578 | 0.785 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | Birth complications | -0.002 | 0.030 | 3917 | 0.312 | 0.956 | 0.970 | -0.007 | 0.027 | 4196 | 0.310 | 0.788 | 0.878 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | Unplanned pregnancy | -0.020 | 0.035 | 3917 | 0.064 | 0.574 | 0.979 | 0.000 | 0.034 | 4196 | 0.092 | 0.994 | 1.000 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | C-Section | 0.008 | 0.032 | 3917 | 0.064 | 0.809 | 0.996 | -0.093 | 0.030 | 4196 | 0.095 | 0.002 | 0.013 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | Gestational Age | 0.103 | 0.044 | 3917 | 0.065 | 0.020 | 0.095 | 0.023 | 0.040 | 4196 | 0.092 | 0.577 | 0.785 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | Birth weight | 0.034 | 0.042 | 3917 | 0.064 | 0.422 | 0.586 | -0.032 | 0.041 | 4196 | 0.093 | 0.436 | 0.690 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | Tobacco use | 0.083 | 0.048 | 3917 | 0.065 | 0.085 | 0.497 | -0.045 | 0.046 | 4196 | 0.092 | 0.329 | 0.637 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | Alcohol use | 0.018 | 0.035 | 3917 | 0.064 | 0.610 | 0.975 | -0.020 | 0.033 | 4196 | 0.092 | 0.553 | 0.882 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | Marijuana use | 0.039 | 0.068 | 3917 | 0.064 | 0.568 | 0.859 | 0.089 | 0.066 | 4196 | 0.093 | 0.177 | 0.921 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | Pregnancy complications | 0.058 | 0.031 | 3917 | 0.065 | 0.061 | 0.322 | 0.040 | 0.029 | 4196 | 0.093 | 0.180 | 0.405 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | Birth complications | 0.030 | 0.034 | 3917 | 0.064 | 0.384 | 0.884 | 0.008 | 0.031 | 4196 | 0.092 | 0.786 | 0.878 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | Unplanned pregnancy | -0.007 | 0.027 | 3917 | 0.407 | 0.808 | 0.979 | -0.005 | 0.026 | 4196 | 0.419 | 0.837 | 0.965 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | C-Section | -0.036 | 0.024 | 3917 | 0.408 | 0.136 | 0.316 | -0.025 | 0.023 | 4196 | 0.419 | 0.278 | 0.540 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | Gestational Age | 0.032 | 0.034 | 3917 | 0.407 | 0.346 | 0.523 | 0.006 | 0.031 | 4196 | 0.419 | 0.859 | 0.885 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | Birth weight | 0.045 | 0.032 | 3917 | 0.407 | 0.167 | 0.344 | -0.007 | 0.032 | 4196 | 0.419 | 0.837 | 0.933 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | Tobacco use | 0.014 | 0.037 | 3917 | 0.407 | 0.694 | 0.859 | 0.036 | 0.036 | 4196 | 0.420 | 0.313 | 0.637 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | Alcohol use | 0.016 | 0.026 | 3917 | 0.407 | 0.546 | 0.968 | 0.023 | 0.026 | 4196 | 0.420 | 0.379 | 0.826 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | Marijuana use | -0.017 | 0.052 | 3917 | 0.407 | 0.745 | 0.859 | -0.067 | 0.051 | 4196 | 0.419 | 0.195 | 0.921 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | Pregnancy complications | 0.034 | 0.024 | 3917 | 0.407 | 0.144 | 0.392 | -0.006 | 0.023 | 4196 | 0.419 | 0.794 | 0.936 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | Birth complications | 0.046 | 0.026 | 3917 | 0.407 | 0.082 | 0.506 | 0.030 | 0.024 | 4196 | 0.419 | 0.221 | 0.792 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | Unplanned pregnancy | 0.002 | 0.023 | 3917 | 0.573 | 0.943 | 0.979 | 0.010 | 0.024 | 4196 | 0.535 | 0.677 | 0.940 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | C-Section | 0.003 | 0.021 | 3917 | 0.573 | 0.897 | 0.996 | -0.034 | 0.021 | 4196 | 0.536 | 0.102 | 0.257 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | Gestational Age | -0.114 | 0.029 | 3917 | 0.575 | 0.000 | 0.003 | -0.079 | 0.028 | 4196 | 0.536 | 0.005 | 0.044 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | Birth weight | -0.033 | 0.028 | 3917 | 0.573 | 0.236 | 0.416 | 0.012 | 0.029 | 4196 | 0.535 | 0.662 | 0.818 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | Tobacco use | -0.009 | 0.032 | 3917 | 0.573 | 0.783 | 0.919 | 0.043 | 0.032 | 4196 | 0.535 | 0.174 | 0.492 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | Alcohol use | 0.022 | 0.023 | 3917 | 0.573 | 0.341 | 0.896 | -0.023 | 0.023 | 4196 | 0.535 | 0.331 | 0.814 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | Marijuana use | 0.009 | 0.045 | 3917 | 0.573 | 0.844 | 0.897 | -0.053 | 0.046 | 4196 | 0.535 | 0.251 | 0.921 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | Pregnancy complications | -0.007 | 0.020 | 3917 | 0.573 | 0.718 | 0.971 | -0.061 | 0.021 | 4196 | 0.536 | 0.003 | 0.139 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | Birth complications | -0.016 | 0.023 | 3917 | 0.573 | 0.478 | 0.884 | 0.002 | 0.022 | 4196 | 0.535 | 0.941 | 0.969 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | Unplanned pregnancy | 0.001 | 0.028 | 3917 | 0.405 | 0.979 | 0.979 | -0.006 | 0.027 | 4196 | 0.403 | 0.814 | 0.964 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | C-Section | -0.012 | 0.025 | 3917 | 0.406 | 0.618 | 0.918 | -0.008 | 0.024 | 4196 | 0.403 | 0.732 | 0.874 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | Gestational Age | -0.022 | 0.035 | 3917 | 0.406 | 0.523 | 0.623 | 0.055 | 0.033 | 4196 | 0.403 | 0.090 | 0.246 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | Birth weight | 0.081 | 0.033 | 3917 | 0.406 | 0.016 | 0.053 | -0.004 | 0.033 | 4196 | 0.403 | 0.906 | 0.948 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | Tobacco use | -0.029 | 0.038 | 3917 | 0.405 | 0.441 | 0.750 | 0.024 | 0.037 | 4196 | 0.403 | 0.522 | 0.887 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | Alcohol use | 0.020 | 0.027 | 3917 | 0.406 | 0.468 | 0.964 | -0.016 | 0.027 | 4196 | 0.402 | 0.555 | 0.882 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | Marijuana use | 0.040 | 0.054 | 3917 | 0.406 | 0.453 | 0.859 | 0.032 | 0.053 | 4196 | 0.403 | 0.543 | 1.000 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | Pregnancy complications | 0.027 | 0.024 | 3917 | 0.406 | 0.257 | 0.648 | -0.022 | 0.024 | 4196 | 0.403 | 0.354 | 0.586 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | Birth complications | -0.010 | 0.027 | 3917 | 0.406 | 0.708 | 0.884 | 0.019 | 0.025 | 4196 | 0.403 | 0.461 | 0.828 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | Unplanned pregnancy | -0.010 | 0.035 | 3917 | 0.090 | 0.780 | 0.979 | 0.016 | 0.035 | 4196 | 0.096 | 0.634 | 0.912 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | C-Section | -0.002 | 0.032 | 3917 | 0.090 | 0.941 | 0.996 | -0.018 | 0.030 | 4196 | 0.096 | 0.564 | 0.815 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | Gestational Age | -0.015 | 0.044 | 3917 | 0.090 | 0.741 | 0.792 | 0.044 | 0.041 | 4196 | 0.097 | 0.285 | 0.535 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | Birth weight | 0.012 | 0.042 | 3917 | 0.090 | 0.777 | 0.866 | 0.039 | 0.042 | 4196 | 0.096 | 0.345 | 0.618 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | Tobacco use | 0.067 | 0.048 | 3917 | 0.090 | 0.165 | 0.645 | 0.021 | 0.047 | 4196 | 0.096 | 0.656 | 0.887 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | Alcohol use | 0.046 | 0.034 | 3917 | 0.090 | 0.184 | 0.896 | 0.004 | 0.034 | 4196 | 0.096 | 0.901 | 0.959 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | Marijuana use | -0.027 | 0.068 | 3917 | 0.090 | 0.688 | 0.859 | 0.002 | 0.067 | 4196 | 0.096 | 0.980 | 1.000 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | Pregnancy complications | 0.015 | 0.031 | 3917 | 0.090 | 0.616 | 0.932 | 0.047 | 0.030 | 4196 | 0.097 | 0.121 | 0.392 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | Birth complications | 0.017 | 0.034 | 3917 | 0.090 | 0.622 | 0.884 | 0.017 | 0.032 | 4196 | 0.096 | 0.583 | 0.876 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | Unplanned pregnancy | -0.013 | 0.022 | 3917 | 0.537 | 0.548 | 0.979 | -0.017 | 0.022 | 4196 | 0.538 | 0.440 | 0.912 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | C-Section | 0.003 | 0.020 | 3917 | 0.537 | 0.896 | 0.996 | -0.001 | 0.019 | 4196 | 0.538 | 0.970 | 0.985 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | Gestational Age | 0.097 | 0.028 | 3917 | 0.540 | 0.000 | 0.008 | 0.103 | 0.026 | 4196 | 0.542 | 0.000 | 0.003 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | Birth weight | 0.045 | 0.027 | 3917 | 0.538 | 0.091 | 0.212 | -0.006 | 0.027 | 4196 | 0.538 | 0.815 | 0.933 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | Tobacco use | -0.053 | 0.030 | 3917 | 0.538 | 0.082 | 0.497 | 0.060 | 0.030 | 4196 | 0.538 | 0.045 | 0.379 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | Alcohol use | -0.003 | 0.022 | 3917 | 0.537 | 0.878 | 0.998 | 0.019 | 0.022 | 4196 | 0.538 | 0.379 | 0.826 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | Marijuana use | 0.034 | 0.043 | 3917 | 0.537 | 0.430 | 0.859 | 0.023 | 0.043 | 4196 | 0.538 | 0.592 | 1.000 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | Pregnancy complications | -0.006 | 0.019 | 3917 | 0.537 | 0.769 | 0.971 | 0.005 | 0.019 | 4196 | 0.538 | 0.798 | 0.936 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | Birth complications | 0.013 | 0.022 | 3917 | 0.537 | 0.546 | 0.884 | 0.009 | 0.020 | 4196 | 0.538 | 0.658 | 0.878 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | Unplanned pregnancy | 0.017 | 0.030 | 3917 | 0.330 | 0.565 | 0.979 | 0.014 | 0.029 | 4196 | 0.344 | 0.633 | 0.912 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | C-Section | 0.144 | 0.027 | 3917 | 0.336 | 0.000 | 0.000 | 0.048 | 0.026 | 4196 | 0.345 | 0.063 | 0.178 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | Gestational Age | 0.072 | 0.038 | 3917 | 0.331 | 0.055 | 0.162 | 0.083 | 0.035 | 4196 | 0.346 | 0.018 | 0.087 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | Birth weight | 0.115 | 0.036 | 3917 | 0.333 | 0.001 | 0.013 | 0.072 | 0.035 | 4196 | 0.345 | 0.040 | 0.195 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | Tobacco use | 0.037 | 0.041 | 3917 | 0.330 | 0.373 | 0.724 | -0.069 | 0.039 | 4196 | 0.344 | 0.083 | 0.489 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | Alcohol use | 0.018 | 0.029 | 3917 | 0.330 | 0.547 | 0.968 | 0.049 | 0.029 | 4196 | 0.344 | 0.086 | 0.635 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | Marijuana use | -0.040 | 0.058 | 3917 | 0.330 | 0.492 | 0.859 | -0.011 | 0.057 | 4196 | 0.344 | 0.847 | 1.000 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | Pregnancy complications | 0.046 | 0.026 | 3917 | 0.330 | 0.078 | 0.342 | 0.067 | 0.025 | 4196 | 0.346 | 0.008 | 0.139 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | Birth complications | 0.046 | 0.029 | 3917 | 0.330 | 0.113 | 0.511 | 0.034 | 0.027 | 4196 | 0.344 | 0.213 | 0.792 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | Unplanned pregnancy | -0.030 | 0.029 | 3917 | 0.305 | 0.299 | 0.979 | -0.020 | 0.028 | 4196 | 0.337 | 0.466 | 0.912 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | C-Section | 0.015 | 0.026 | 3917 | 0.305 | 0.580 | 0.918 | 0.091 | 0.024 | 4196 | 0.338 | 0.000 | 0.011 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | Gestational Age | -0.037 | 0.037 | 3917 | 0.305 | 0.310 | 0.513 | 0.040 | 0.033 | 4196 | 0.337 | 0.232 | 0.451 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | Birth weight | -0.036 | 0.035 | 3917 | 0.305 | 0.305 | 0.481 | -0.067 | 0.033 | 4196 | 0.338 | 0.046 | 0.208 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | Tobacco use | 0.013 | 0.040 | 3917 | 0.305 | 0.746 | 0.906 | 0.091 | 0.037 | 4196 | 0.339 | 0.016 | 0.265 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | Alcohol use | 0.002 | 0.029 | 3917 | 0.305 | 0.936 | 0.998 | 0.030 | 0.027 | 4196 | 0.338 | 0.262 | 0.812 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | Marijuana use | 0.005 | 0.056 | 3917 | 0.305 | 0.926 | 0.939 | 0.074 | 0.054 | 4196 | 0.338 | 0.171 | 0.921 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | Pregnancy complications | -0.057 | 0.025 | 3917 | 0.306 | 0.026 | 0.249 | 0.028 | 0.024 | 4196 | 0.338 | 0.254 | 0.479 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | Birth complications | 0.025 | 0.028 | 3917 | 0.304 | 0.386 | 0.884 | 0.001 | 0.026 | 4196 | 0.337 | 0.969 | 0.983 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | Unplanned pregnancy | 0.016 | 0.034 | 3917 | 0.093 | 0.626 | 0.979 | -0.001 | 0.033 | 4196 | 0.121 | 0.969 | 1.000 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | C-Section | 0.037 | 0.030 | 3917 | 0.094 | 0.224 | 0.476 | 0.063 | 0.029 | 4196 | 0.123 | 0.026 | 0.103 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | Gestational Age | 0.108 | 0.042 | 3917 | 0.095 | 0.010 | 0.068 | 0.137 | 0.039 | 4196 | 0.123 | 0.000 | 0.007 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | Birth weight | 0.119 | 0.040 | 3917 | 0.096 | 0.003 | 0.022 | 0.034 | 0.039 | 4196 | 0.122 | 0.393 | 0.668 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | Tobacco use | 0.033 | 0.046 | 3917 | 0.094 | 0.475 | 0.787 | -0.013 | 0.044 | 4196 | 0.121 | 0.760 | 0.887 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | Alcohol use | -0.006 | 0.033 | 3917 | 0.093 | 0.860 | 0.998 | 0.012 | 0.032 | 4196 | 0.122 | 0.707 | 0.906 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | Marijuana use | 0.066 | 0.065 | 3917 | 0.094 | 0.307 | 0.859 | -0.015 | 0.063 | 4196 | 0.121 | 0.818 | 1.000 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | Pregnancy complications | 0.015 | 0.029 | 3917 | 0.094 | 0.604 | 0.932 | 0.021 | 0.028 | 4196 | 0.122 | 0.464 | 0.651 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | Birth complications | 0.060 | 0.033 | 3917 | 0.094 | 0.068 | 0.464 | 0.058 | 0.030 | 4196 | 0.122 | 0.053 | 0.511 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | Unplanned pregnancy | -0.012 | 0.027 | 3917 | 0.425 | 0.654 | 0.979 | -0.047 | 0.027 | 4196 | 0.432 | 0.081 | 0.846 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | C-Section | -0.098 | 0.025 | 3917 | 0.428 | 0.000 | 0.003 | -0.074 | 0.024 | 4196 | 0.433 | 0.002 | 0.013 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | Gestational Age | -0.115 | 0.034 | 3917 | 0.427 | 0.001 | 0.009 | -0.083 | 0.032 | 4196 | 0.433 | 0.009 | 0.062 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | Birth weight | -0.092 | 0.033 | 3917 | 0.427 | 0.006 | 0.025 | -0.090 | 0.032 | 4196 | 0.433 | 0.005 | 0.053 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | Tobacco use | -0.009 | 0.038 | 3917 | 0.425 | 0.811 | 0.919 | -0.039 | 0.036 | 4196 | 0.432 | 0.279 | 0.637 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | Alcohol use | -0.003 | 0.027 | 3917 | 0.425 | 0.920 | 0.998 | -0.012 | 0.026 | 4196 | 0.432 | 0.656 | 0.906 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | Marijuana use | 0.028 | 0.053 | 3917 | 0.425 | 0.597 | 0.859 | -0.025 | 0.052 | 4196 | 0.432 | 0.629 | 1.000 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | Pregnancy complications | -0.021 | 0.024 | 3917 | 0.425 | 0.381 | 0.786 | -0.034 | 0.023 | 4196 | 0.432 | 0.140 | 0.392 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | Birth complications | -0.043 | 0.027 | 3917 | 0.426 | 0.109 | 0.511 | -0.008 | 0.025 | 4196 | 0.432 | 0.751 | 0.878 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | Unplanned pregnancy | -0.022 | 0.035 | 3917 | 0.088 | 0.528 | 0.979 | -0.029 | 0.034 | 4196 | 0.099 | 0.394 | 0.912 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | C-Section | 0.113 | 0.032 | 3917 | 0.091 | 0.000 | 0.008 | 0.020 | 0.030 | 4196 | 0.099 | 0.510 | 0.773 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | Gestational Age | 0.143 | 0.044 | 3917 | 0.090 | 0.001 | 0.009 | 0.035 | 0.041 | 4196 | 0.099 | 0.389 | 0.606 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | Birth weight | 0.076 | 0.042 | 3917 | 0.089 | 0.073 | 0.177 | 0.016 | 0.041 | 4196 | 0.099 | 0.700 | 0.835 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | Tobacco use | -0.056 | 0.048 | 3917 | 0.089 | 0.248 | 0.702 | -0.065 | 0.046 | 4196 | 0.099 | 0.157 | 0.492 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | Alcohol use | -0.039 | 0.034 | 3917 | 0.088 | 0.259 | 0.896 | -0.003 | 0.033 | 4196 | 0.099 | 0.931 | 0.959 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | Marijuana use | 0.043 | 0.068 | 3917 | 0.088 | 0.526 | 0.859 | 0.034 | 0.066 | 4196 | 0.099 | 0.605 | 1.000 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | Pregnancy complications | 0.054 | 0.031 | 3917 | 0.089 | 0.080 | 0.342 | 0.063 | 0.030 | 4196 | 0.100 | 0.033 | 0.235 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | Birth complications | 0.069 | 0.034 | 3917 | 0.089 | 0.045 | 0.464 | 0.000 | 0.031 | 4196 | 0.099 | 0.999 | 0.999 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | Unplanned pregnancy | 0.054 | 0.028 | 3917 | 0.422 | 0.057 | 0.908 | -0.014 | 0.027 | 4196 | 0.452 | 0.598 | 0.912 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | C-Section | 0.013 | 0.025 | 3917 | 0.422 | 0.620 | 0.918 | -0.026 | 0.024 | 4196 | 0.451 | 0.273 | 0.540 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | Gestational Age | -0.023 | 0.035 | 3917 | 0.422 | 0.514 | 0.623 | -0.016 | 0.032 | 4196 | 0.451 | 0.623 | 0.799 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | Birth weight | -0.016 | 0.034 | 3917 | 0.422 | 0.628 | 0.789 | -0.045 | 0.032 | 4196 | 0.452 | 0.168 | 0.421 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | Tobacco use | -0.018 | 0.039 | 3917 | 0.422 | 0.646 | 0.844 | -0.062 | 0.036 | 4196 | 0.452 | 0.086 | 0.489 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | Alcohol use | -0.018 | 0.028 | 3917 | 0.422 | 0.511 | 0.968 | -0.056 | 0.026 | 4196 | 0.452 | 0.034 | 0.635 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | Marijuana use | 0.076 | 0.054 | 3917 | 0.422 | 0.161 | 0.774 | -0.047 | 0.052 | 4196 | 0.452 | 0.371 | 0.970 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | Pregnancy complications | 0.012 | 0.025 | 3917 | 0.422 | 0.633 | 0.936 | -0.030 | 0.023 | 4196 | 0.452 | 0.199 | 0.405 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | Birth complications | 0.004 | 0.028 | 3917 | 0.422 | 0.882 | 0.970 | -0.012 | 0.025 | 4196 | 0.452 | 0.640 | 0.878 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | Unplanned pregnancy | 0.018 | 0.029 | 3917 | 0.383 | 0.530 | 0.979 | -0.034 | 0.028 | 4196 | 0.385 | 0.235 | 0.846 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | C-Section | 0.027 | 0.026 | 3917 | 0.383 | 0.298 | 0.557 | -0.011 | 0.025 | 4196 | 0.385 | 0.663 | 0.874 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | Gestational Age | 0.078 | 0.036 | 3917 | 0.384 | 0.033 | 0.111 | -0.012 | 0.034 | 4196 | 0.385 | 0.731 | 0.842 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | Birth weight | -0.015 | 0.035 | 3917 | 0.383 | 0.661 | 0.789 | 0.027 | 0.034 | 4196 | 0.385 | 0.425 | 0.688 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | Tobacco use | 0.047 | 0.040 | 3917 | 0.383 | 0.240 | 0.702 | 0.019 | 0.038 | 4196 | 0.385 | 0.614 | 0.887 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | Alcohol use | 0.000 | 0.029 | 3917 | 0.383 | 0.997 | 0.998 | 0.029 | 0.028 | 4196 | 0.385 | 0.299 | 0.812 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | Marijuana use | 0.042 | 0.056 | 3917 | 0.383 | 0.459 | 0.859 | 0.072 | 0.055 | 4196 | 0.385 | 0.194 | 0.921 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | Pregnancy complications | 0.021 | 0.025 | 3917 | 0.383 | 0.406 | 0.789 | 0.031 | 0.025 | 4196 | 0.385 | 0.210 | 0.407 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | Birth complications | 0.006 | 0.029 | 3917 | 0.383 | 0.846 | 0.969 | 0.006 | 0.026 | 4196 | 0.385 | 0.818 | 0.898 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | Unplanned pregnancy | -0.004 | 0.032 | 3917 | 0.239 | 0.895 | 0.979 | -0.022 | 0.032 | 4196 | 0.223 | 0.485 | 0.912 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | C-Section | -0.028 | 0.029 | 3917 | 0.239 | 0.342 | 0.582 | -0.086 | 0.028 | 4196 | 0.225 | 0.002 | 0.013 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | Gestational Age | -0.103 | 0.040 | 3917 | 0.241 | 0.011 | 0.068 | -0.068 | 0.038 | 4196 | 0.224 | 0.073 | 0.208 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | Birth weight | 0.004 | 0.039 | 3917 | 0.239 | 0.918 | 0.932 | 0.005 | 0.039 | 4196 | 0.223 | 0.902 | 0.948 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | Tobacco use | 0.002 | 0.044 | 3917 | 0.239 | 0.956 | 0.985 | -0.024 | 0.043 | 4196 | 0.223 | 0.579 | 0.887 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | Alcohol use | 0.039 | 0.032 | 3917 | 0.240 | 0.217 | 0.896 | 0.023 | 0.031 | 4196 | 0.223 | 0.458 | 0.865 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | Marijuana use | -0.022 | 0.062 | 3917 | 0.239 | 0.726 | 0.859 | -0.013 | 0.062 | 4196 | 0.223 | 0.838 | 1.000 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | Pregnancy complications | 0.005 | 0.028 | 3917 | 0.239 | 0.867 | 0.972 | -0.015 | 0.028 | 4196 | 0.223 | 0.588 | 0.785 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | Birth complications | -0.005 | 0.032 | 3917 | 0.239 | 0.886 | 0.970 | -0.009 | 0.030 | 4196 | 0.223 | 0.769 | 0.878 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | Unplanned pregnancy | -0.008 | 0.030 | 3917 | 0.324 | 0.803 | 0.979 | -0.024 | 0.029 | 4196 | 0.347 | 0.404 | 0.912 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | C-Section | -0.065 | 0.027 | 3917 | 0.325 | 0.017 | 0.145 | -0.070 | 0.026 | 4196 | 0.349 | 0.006 | 0.034 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | Gestational Age | -0.045 | 0.038 | 3917 | 0.324 | 0.231 | 0.424 | -0.093 | 0.035 | 4196 | 0.350 | 0.008 | 0.060 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | Birth weight | -0.032 | 0.036 | 3917 | 0.324 | 0.378 | 0.535 | 0.038 | 0.035 | 4196 | 0.347 | 0.285 | 0.554 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | Tobacco use | -0.002 | 0.041 | 3917 | 0.324 | 0.965 | 0.985 | -0.038 | 0.039 | 4196 | 0.347 | 0.337 | 0.637 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | Alcohol use | 0.064 | 0.030 | 3917 | 0.325 | 0.032 | 0.510 | -0.029 | 0.029 | 4196 | 0.347 | 0.311 | 0.812 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | Marijuana use | 0.154 | 0.058 | 3917 | 0.324 | 0.008 | 0.281 | -0.023 | 0.057 | 4196 | 0.347 | 0.685 | 1.000 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | Pregnancy complications | -0.004 | 0.026 | 3917 | 0.324 | 0.894 | 0.972 | -0.021 | 0.025 | 4196 | 0.348 | 0.416 | 0.628 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | Birth complications | -0.071 | 0.030 | 3917 | 0.325 | 0.016 | 0.367 | -0.051 | 0.027 | 4196 | 0.348 | 0.058 | 0.511 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | Unplanned pregnancy | -0.006 | 0.031 | 3917 | 0.275 | 0.836 | 0.979 | -0.007 | 0.030 | 4196 | 0.266 | 0.818 | 0.964 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | C-Section | 0.047 | 0.028 | 3917 | 0.276 | 0.087 | 0.248 | 0.088 | 0.026 | 4196 | 0.268 | 0.001 | 0.011 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | Gestational Age | 0.086 | 0.038 | 3917 | 0.277 | 0.024 | 0.096 | 0.126 | 0.036 | 4196 | 0.268 | 0.000 | 0.007 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | Birth weight | -0.042 | 0.037 | 3917 | 0.275 | 0.246 | 0.419 | -0.054 | 0.036 | 4196 | 0.266 | 0.133 | 0.348 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | Tobacco use | -0.040 | 0.042 | 3917 | 0.276 | 0.343 | 0.724 | 0.101 | 0.041 | 4196 | 0.266 | 0.013 | 0.265 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | Alcohol use | -0.030 | 0.030 | 3917 | 0.276 | 0.314 | 0.896 | 0.010 | 0.029 | 4196 | 0.266 | 0.726 | 0.906 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | Marijuana use | 0.030 | 0.059 | 3917 | 0.275 | 0.615 | 0.859 | 0.058 | 0.058 | 4196 | 0.266 | 0.319 | 0.921 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | Pregnancy complications | -0.041 | 0.027 | 3917 | 0.275 | 0.122 | 0.392 | 0.012 | 0.026 | 4196 | 0.266 | 0.647 | 0.815 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | Birth complications | -0.015 | 0.030 | 3917 | 0.275 | 0.625 | 0.884 | -0.011 | 0.028 | 4196 | 0.265 | 0.691 | 0.878 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | Unplanned pregnancy | -0.010 | 0.028 | 3917 | 0.430 | 0.712 | 0.979 | 0.037 | 0.027 | 4196 | 0.439 | 0.162 | 0.846 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | C-Section | 0.004 | 0.025 | 3917 | 0.430 | 0.882 | 0.996 | -0.002 | 0.023 | 4196 | 0.439 | 0.941 | 0.985 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | Gestational Age | -0.055 | 0.034 | 3917 | 0.430 | 0.111 | 0.274 | -0.068 | 0.032 | 4196 | 0.439 | 0.033 | 0.126 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | Birth weight | -0.105 | 0.033 | 3917 | 0.432 | 0.002 | 0.013 | -0.035 | 0.032 | 4196 | 0.439 | 0.276 | 0.554 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | Tobacco use | 0.038 | 0.038 | 3917 | 0.430 | 0.317 | 0.724 | -0.047 | 0.036 | 4196 | 0.439 | 0.195 | 0.492 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | Alcohol use | 0.045 | 0.027 | 3917 | 0.430 | 0.094 | 0.797 | 0.003 | 0.026 | 4196 | 0.439 | 0.896 | 0.959 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | Marijuana use | 0.082 | 0.053 | 3917 | 0.430 | 0.125 | 0.774 | -0.068 | 0.052 | 4196 | 0.439 | 0.185 | 0.921 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | Pregnancy complications | -0.036 | 0.024 | 3917 | 0.430 | 0.135 | 0.392 | -0.023 | 0.023 | 4196 | 0.439 | 0.323 | 0.562 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | Birth complications | 0.045 | 0.027 | 3917 | 0.430 | 0.092 | 0.511 | -0.021 | 0.025 | 4196 | 0.439 | 0.386 | 0.802 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | Unplanned pregnancy | 0.017 | 0.034 | 3917 | 0.131 | 0.629 | 0.979 | 0.008 | 0.034 | 4196 | 0.126 | 0.822 | 0.964 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | C-Section | 0.009 | 0.031 | 3917 | 0.131 | 0.772 | 0.996 | 0.032 | 0.029 | 4196 | 0.127 | 0.272 | 0.540 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | Gestational Age | 0.014 | 0.043 | 3917 | 0.131 | 0.746 | 0.792 | -0.027 | 0.040 | 4196 | 0.126 | 0.496 | 0.703 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | Birth weight | -0.049 | 0.041 | 3917 | 0.131 | 0.239 | 0.416 | -0.019 | 0.040 | 4196 | 0.126 | 0.631 | 0.794 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | Tobacco use | 0.029 | 0.047 | 3917 | 0.131 | 0.538 | 0.844 | -0.117 | 0.045 | 4196 | 0.128 | 0.010 | 0.265 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | Alcohol use | 0.018 | 0.034 | 3917 | 0.131 | 0.599 | 0.975 | -0.072 | 0.033 | 4196 | 0.128 | 0.028 | 0.635 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | Marijuana use | -0.012 | 0.066 | 3917 | 0.131 | 0.858 | 0.897 | -0.110 | 0.065 | 4196 | 0.127 | 0.090 | 0.921 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | Pregnancy complications | 0.012 | 0.030 | 3917 | 0.131 | 0.697 | 0.971 | 0.025 | 0.029 | 4196 | 0.127 | 0.384 | 0.607 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | Birth complications | -0.003 | 0.034 | 3917 | 0.131 | 0.923 | 0.970 | 0.033 | 0.031 | 4196 | 0.127 | 0.286 | 0.802 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | Unplanned pregnancy | 0.052 | 0.026 | 3917 | 0.499 | 0.046 | 0.908 | 0.002 | 0.025 | 4196 | 0.517 | 0.931 | 1.000 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | C-Section | 0.010 | 0.024 | 3917 | 0.498 | 0.662 | 0.958 | -0.010 | 0.022 | 4196 | 0.517 | 0.635 | 0.874 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | Gestational Age | -0.026 | 0.033 | 3917 | 0.498 | 0.424 | 0.577 | -0.005 | 0.030 | 4196 | 0.517 | 0.858 | 0.885 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | Birth weight | -0.021 | 0.032 | 3917 | 0.498 | 0.507 | 0.690 | -0.067 | 0.030 | 4196 | 0.518 | 0.027 | 0.167 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | Tobacco use | -0.069 | 0.036 | 3917 | 0.499 | 0.055 | 0.469 | -0.034 | 0.034 | 4196 | 0.517 | 0.317 | 0.637 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | Alcohol use | -0.020 | 0.026 | 3917 | 0.498 | 0.433 | 0.964 | -0.014 | 0.025 | 4196 | 0.517 | 0.558 | 0.882 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | Marijuana use | 0.024 | 0.051 | 3917 | 0.498 | 0.634 | 0.859 | -0.053 | 0.049 | 4196 | 0.517 | 0.277 | 0.921 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | Pregnancy complications | 0.001 | 0.023 | 3917 | 0.498 | 0.948 | 0.973 | -0.038 | 0.022 | 4196 | 0.517 | 0.081 | 0.345 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | Birth complications | 0.012 | 0.026 | 3917 | 0.498 | 0.631 | 0.884 | -0.029 | 0.023 | 4196 | 0.517 | 0.206 | 0.792 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | Unplanned pregnancy | -0.021 | 0.024 | 3917 | 0.550 | 0.384 | 0.979 | 0.020 | 0.024 | 4196 | 0.549 | 0.401 | 0.912 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | C-Section | -0.047 | 0.022 | 3917 | 0.550 | 0.032 | 0.166 | -0.068 | 0.021 | 4196 | 0.549 | 0.001 | 0.011 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | Gestational Age | 0.038 | 0.030 | 3917 | 0.550 | 0.212 | 0.422 | 0.080 | 0.028 | 4196 | 0.550 | 0.005 | 0.044 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | Birth weight | -0.053 | 0.029 | 3917 | 0.550 | 0.068 | 0.172 | 0.006 | 0.028 | 4196 | 0.549 | 0.835 | 0.933 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | Tobacco use | -0.032 | 0.033 | 3917 | 0.550 | 0.330 | 0.724 | 0.027 | 0.032 | 4196 | 0.549 | 0.393 | 0.723 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | Alcohol use | -0.014 | 0.024 | 3917 | 0.550 | 0.555 | 0.968 | 0.009 | 0.023 | 4196 | 0.549 | 0.690 | 0.906 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | Marijuana use | -0.021 | 0.047 | 3917 | 0.550 | 0.651 | 0.859 | -0.018 | 0.046 | 4196 | 0.549 | 0.693 | 1.000 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | Pregnancy complications | 0.019 | 0.021 | 3917 | 0.550 | 0.381 | 0.786 | -0.020 | 0.020 | 4196 | 0.549 | 0.319 | 0.562 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | Birth complications | -0.005 | 0.024 | 3917 | 0.550 | 0.834 | 0.969 | 0.006 | 0.022 | 4196 | 0.549 | 0.786 | 0.878 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | Unplanned pregnancy | -0.062 | 0.034 | 3917 | 0.097 | 0.070 | 0.908 | 0.034 | 0.033 | 4196 | 0.118 | 0.306 | 0.912 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | C-Section | 0.003 | 0.031 | 3917 | 0.096 | 0.924 | 0.996 | 0.058 | 0.029 | 4196 | 0.120 | 0.045 | 0.147 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | Gestational Age | 0.073 | 0.042 | 3917 | 0.097 | 0.087 | 0.236 | 0.056 | 0.039 | 4196 | 0.119 | 0.156 | 0.358 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | Birth weight | 0.053 | 0.041 | 3917 | 0.097 | 0.195 | 0.379 | 0.022 | 0.040 | 4196 | 0.119 | 0.588 | 0.794 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | Tobacco use | 0.062 | 0.047 | 3917 | 0.097 | 0.180 | 0.645 | 0.000 | 0.045 | 4196 | 0.118 | 0.992 | 0.997 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | Alcohol use | 0.038 | 0.033 | 3917 | 0.096 | 0.257 | 0.896 | 0.025 | 0.033 | 4196 | 0.118 | 0.433 | 0.842 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | Marijuana use | 0.034 | 0.066 | 3917 | 0.096 | 0.609 | 0.859 | 0.017 | 0.065 | 4196 | 0.118 | 0.787 | 1.000 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | Pregnancy complications | -0.010 | 0.030 | 3917 | 0.096 | 0.744 | 0.971 | 0.042 | 0.029 | 4196 | 0.119 | 0.142 | 0.392 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | Birth complications | 0.038 | 0.033 | 3917 | 0.096 | 0.253 | 0.884 | 0.031 | 0.031 | 4196 | 0.119 | 0.319 | 0.802 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | Unplanned pregnancy | 0.002 | 0.024 | 3917 | 0.543 | 0.933 | 0.979 | 0.029 | 0.024 | 4196 | 0.534 | 0.226 | 0.846 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | C-Section | -0.002 | 0.022 | 3917 | 0.543 | 0.927 | 0.996 | -0.033 | 0.021 | 4196 | 0.534 | 0.123 | 0.298 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | Gestational Age | -0.048 | 0.030 | 3917 | 0.543 | 0.117 | 0.274 | -0.008 | 0.029 | 4196 | 0.534 | 0.782 | 0.871 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | Birth weight | 0.005 | 0.029 | 3917 | 0.543 | 0.856 | 0.922 | 0.031 | 0.029 | 4196 | 0.534 | 0.279 | 0.554 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | Tobacco use | 0.056 | 0.033 | 3917 | 0.543 | 0.095 | 0.497 | -0.012 | 0.032 | 4196 | 0.534 | 0.715 | 0.887 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | Alcohol use | 0.022 | 0.024 | 3917 | 0.543 | 0.353 | 0.896 | 0.004 | 0.024 | 4196 | 0.534 | 0.871 | 0.959 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | Marijuana use | 0.057 | 0.047 | 3917 | 0.543 | 0.228 | 0.790 | 0.003 | 0.047 | 4196 | 0.534 | 0.953 | 1.000 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | Pregnancy complications | -0.041 | 0.021 | 3917 | 0.544 | 0.054 | 0.322 | 0.019 | 0.021 | 4196 | 0.534 | 0.350 | 0.586 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | Birth complications | -0.014 | 0.024 | 3917 | 0.543 | 0.569 | 0.884 | 0.018 | 0.022 | 4196 | 0.534 | 0.413 | 0.802 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | Unplanned pregnancy | 0.002 | 0.024 | 3917 | 0.572 | 0.926 | 0.979 | 0.007 | 0.023 | 4196 | 0.582 | 0.748 | 0.964 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | C-Section | 0.005 | 0.021 | 3917 | 0.572 | 0.824 | 0.996 | -0.039 | 0.020 | 4196 | 0.582 | 0.050 | 0.154 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | Gestational Age | -0.027 | 0.029 | 3917 | 0.572 | 0.358 | 0.529 | 0.026 | 0.027 | 4196 | 0.583 | 0.339 | 0.581 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | Birth weight | 0.082 | 0.028 | 3917 | 0.573 | 0.004 | 0.023 | 0.080 | 0.027 | 4196 | 0.584 | 0.003 | 0.041 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | Tobacco use | 0.031 | 0.032 | 3917 | 0.572 | 0.340 | 0.724 | -0.044 | 0.030 | 4196 | 0.582 | 0.147 | 0.492 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | Alcohol use | 0.000 | 0.023 | 3917 | 0.572 | 0.998 | 0.998 | -0.023 | 0.022 | 4196 | 0.582 | 0.295 | 0.812 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | Marijuana use | -0.036 | 0.045 | 3917 | 0.572 | 0.420 | 0.859 | 0.020 | 0.044 | 4196 | 0.582 | 0.639 | 1.000 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | Pregnancy complications | 0.015 | 0.020 | 3917 | 0.572 | 0.467 | 0.815 | 0.034 | 0.020 | 4196 | 0.583 | 0.079 | 0.345 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | Birth complications | -0.023 | 0.023 | 3917 | 0.572 | 0.306 | 0.884 | -0.003 | 0.021 | 4196 | 0.582 | 0.876 | 0.938 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | Unplanned pregnancy | -0.012 | 0.022 | 3917 | 0.618 | 0.602 | 0.979 | -0.027 | 0.023 | 4196 | 0.588 | 0.236 | 0.846 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | C-Section | 0.023 | 0.020 | 3917 | 0.618 | 0.244 | 0.491 | 0.001 | 0.020 | 4196 | 0.588 | 0.972 | 0.985 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | Gestational Age | 0.027 | 0.028 | 3917 | 0.618 | 0.324 | 0.513 | 0.010 | 0.027 | 4196 | 0.588 | 0.702 | 0.842 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | Birth weight | -0.030 | 0.027 | 3917 | 0.618 | 0.265 | 0.439 | 0.030 | 0.027 | 4196 | 0.588 | 0.276 | 0.554 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | Tobacco use | -0.061 | 0.030 | 3917 | 0.619 | 0.045 | 0.469 | -0.038 | 0.030 | 4196 | 0.588 | 0.208 | 0.504 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | Alcohol use | -0.025 | 0.022 | 3917 | 0.619 | 0.248 | 0.896 | -0.019 | 0.022 | 4196 | 0.588 | 0.399 | 0.826 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | Marijuana use | -0.014 | 0.043 | 3917 | 0.618 | 0.736 | 0.859 | -0.115 | 0.044 | 4196 | 0.589 | 0.008 | 0.286 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | Pregnancy complications | -0.041 | 0.019 | 3917 | 0.619 | 0.034 | 0.290 | -0.040 | 0.020 | 4196 | 0.588 | 0.041 | 0.251 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | Birth complications | 0.012 | 0.022 | 3917 | 0.618 | 0.596 | 0.884 | 0.006 | 0.021 | 4196 | 0.588 | 0.768 | 0.878 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | Unplanned pregnancy | -0.019 | 0.027 | 3917 | 0.468 | 0.474 | 0.979 | -0.039 | 0.025 | 4196 | 0.495 | 0.119 | 0.846 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | C-Section | -0.045 | 0.024 | 3917 | 0.469 | 0.061 | 0.232 | -0.020 | 0.022 | 4196 | 0.494 | 0.366 | 0.672 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | Gestational Age | 0.006 | 0.033 | 3917 | 0.468 | 0.862 | 0.875 | 0.049 | 0.030 | 4196 | 0.495 | 0.104 | 0.261 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | Birth weight | 0.047 | 0.032 | 3917 | 0.469 | 0.143 | 0.305 | 0.059 | 0.030 | 4196 | 0.495 | 0.049 | 0.210 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | Tobacco use | 0.048 | 0.036 | 3917 | 0.469 | 0.181 | 0.645 | -0.035 | 0.034 | 4196 | 0.494 | 0.304 | 0.637 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | Alcohol use | 0.038 | 0.026 | 3917 | 0.469 | 0.140 | 0.797 | 0.008 | 0.025 | 4196 | 0.494 | 0.753 | 0.906 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | Marijuana use | 0.034 | 0.051 | 3917 | 0.468 | 0.511 | 0.859 | -0.033 | 0.048 | 4196 | 0.494 | 0.499 | 1.000 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | Pregnancy complications | 0.001 | 0.023 | 3917 | 0.468 | 0.959 | 0.973 | 0.028 | 0.022 | 4196 | 0.495 | 0.190 | 0.405 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | Birth complications | -0.057 | 0.026 | 3917 | 0.469 | 0.028 | 0.440 | 0.007 | 0.023 | 4196 | 0.494 | 0.745 | 0.878 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | Unplanned pregnancy | 0.018 | 0.025 | 3917 | 0.516 | 0.461 | 0.979 | -0.020 | 0.024 | 4196 | 0.527 | 0.408 | 0.912 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | C-Section | 0.037 | 0.023 | 3917 | 0.516 | 0.099 | 0.248 | 0.014 | 0.021 | 4196 | 0.527 | 0.522 | 0.773 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | Gestational Age | -0.051 | 0.031 | 3917 | 0.516 | 0.107 | 0.274 | -0.035 | 0.029 | 4196 | 0.527 | 0.225 | 0.451 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | Birth weight | -0.073 | 0.030 | 3917 | 0.516 | 0.015 | 0.053 | 0.018 | 0.029 | 4196 | 0.527 | 0.545 | 0.794 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | Tobacco use | 0.032 | 0.034 | 3917 | 0.516 | 0.356 | 0.724 | 0.008 | 0.033 | 4196 | 0.527 | 0.811 | 0.904 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | Alcohol use | -0.006 | 0.025 | 3917 | 0.516 | 0.809 | 0.979 | -0.002 | 0.024 | 4196 | 0.527 | 0.929 | 0.959 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | Marijuana use | 0.020 | 0.048 | 3917 | 0.516 | 0.677 | 0.859 | -0.064 | 0.047 | 4196 | 0.527 | 0.175 | 0.921 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | Pregnancy complications | 0.019 | 0.022 | 3917 | 0.516 | 0.382 | 0.786 | -0.030 | 0.021 | 4196 | 0.527 | 0.148 | 0.392 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | Birth complications | -0.019 | 0.025 | 3917 | 0.516 | 0.437 | 0.884 | -0.046 | 0.022 | 4196 | 0.527 | 0.040 | 0.511 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | Unplanned pregnancy | 0.046 | 0.035 | 3917 | 0.121 | 0.186 | 0.979 | -0.009 | 0.035 | 4196 | 0.086 | 0.785 | 0.964 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | C-Section | 0.016 | 0.031 | 3917 | 0.120 | 0.621 | 0.918 | 0.039 | 0.030 | 4196 | 0.087 | 0.201 | 0.455 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | Gestational Age | 0.030 | 0.043 | 3917 | 0.120 | 0.491 | 0.618 | 0.006 | 0.041 | 4196 | 0.086 | 0.894 | 0.907 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | Birth weight | 0.139 | 0.042 | 3917 | 0.122 | 0.001 | 0.012 | 0.080 | 0.042 | 4196 | 0.087 | 0.055 | 0.217 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | Tobacco use | 0.121 | 0.048 | 3917 | 0.122 | 0.011 | 0.194 | 0.035 | 0.047 | 4196 | 0.087 | 0.449 | 0.803 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | Alcohol use | 0.054 | 0.034 | 3917 | 0.121 | 0.113 | 0.797 | 0.037 | 0.034 | 4196 | 0.087 | 0.281 | 0.812 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | Marijuana use | 0.084 | 0.067 | 3917 | 0.121 | 0.212 | 0.790 | 0.048 | 0.067 | 4196 | 0.086 | 0.479 | 1.000 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | Pregnancy complications | 0.070 | 0.030 | 3917 | 0.121 | 0.021 | 0.249 | 0.038 | 0.030 | 4196 | 0.087 | 0.202 | 0.405 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | Birth complications | 0.020 | 0.034 | 3917 | 0.120 | 0.563 | 0.884 | 0.005 | 0.032 | 4196 | 0.086 | 0.883 | 0.938 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | Unplanned pregnancy | -0.026 | 0.035 | 3917 | 0.122 | 0.453 | 0.979 | 0.016 | 0.033 | 4196 | 0.163 | 0.637 | 0.912 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | C-Section | 0.052 | 0.031 | 3917 | 0.122 | 0.096 | 0.248 | 0.012 | 0.029 | 4196 | 0.163 | 0.675 | 0.874 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | Gestational Age | 0.043 | 0.043 | 3917 | 0.121 | 0.321 | 0.513 | -0.014 | 0.039 | 4196 | 0.163 | 0.721 | 0.842 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | Birth weight | 0.119 | 0.042 | 3917 | 0.123 | 0.004 | 0.024 | 0.073 | 0.040 | 4196 | 0.164 | 0.066 | 0.235 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | Tobacco use | 0.065 | 0.047 | 3917 | 0.122 | 0.171 | 0.645 | -0.014 | 0.045 | 4196 | 0.163 | 0.758 | 0.887 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | Alcohol use | -0.050 | 0.034 | 3917 | 0.122 | 0.141 | 0.797 | 0.047 | 0.032 | 4196 | 0.164 | 0.148 | 0.635 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | Marijuana use | 0.039 | 0.067 | 3917 | 0.122 | 0.563 | 0.859 | 0.079 | 0.064 | 4196 | 0.164 | 0.218 | 0.921 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | Pregnancy complications | 0.020 | 0.030 | 3917 | 0.122 | 0.500 | 0.829 | 0.040 | 0.029 | 4196 | 0.164 | 0.161 | 0.393 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | Birth complications | 0.028 | 0.034 | 3917 | 0.122 | 0.416 | 0.884 | 0.032 | 0.030 | 4196 | 0.163 | 0.297 | 0.802 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | Unplanned pregnancy | -0.041 | 0.032 | 3917 | 0.266 | 0.195 | 0.979 | 0.000 | 0.031 | 4196 | 0.259 | 1.000 | 1.000 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | C-Section | -0.090 | 0.029 | 3917 | 0.267 | 0.002 | 0.023 | -0.092 | 0.027 | 4196 | 0.261 | 0.001 | 0.011 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | Gestational Age | -0.061 | 0.040 | 3917 | 0.266 | 0.125 | 0.283 | -0.001 | 0.037 | 4196 | 0.259 | 0.983 | 0.983 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | Birth weight | -0.047 | 0.038 | 3917 | 0.266 | 0.219 | 0.414 | -0.019 | 0.038 | 4196 | 0.259 | 0.607 | 0.794 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | Tobacco use | 0.040 | 0.043 | 3917 | 0.266 | 0.363 | 0.724 | -0.016 | 0.042 | 4196 | 0.259 | 0.698 | 0.887 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | Alcohol use | -0.008 | 0.031 | 3917 | 0.266 | 0.804 | 0.979 | 0.024 | 0.031 | 4196 | 0.259 | 0.428 | 0.842 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | Marijuana use | 0.070 | 0.061 | 3917 | 0.266 | 0.257 | 0.790 | 0.072 | 0.061 | 4196 | 0.260 | 0.239 | 0.921 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | Pregnancy complications | -0.046 | 0.028 | 3917 | 0.266 | 0.095 | 0.367 | -0.020 | 0.027 | 4196 | 0.259 | 0.469 | 0.651 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | Birth complications | -0.033 | 0.031 | 3917 | 0.266 | 0.286 | 0.884 | 0.017 | 0.029 | 4196 | 0.259 | 0.559 | 0.876 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | Unplanned pregnancy | 0.004 | 0.033 | 3917 | 0.114 | 0.891 | 0.979 | -0.043 | 0.032 | 4196 | 0.122 | 0.179 | 0.846 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | C-Section | -0.001 | 0.029 | 3917 | 0.114 | 0.986 | 0.996 | -0.019 | 0.028 | 4196 | 0.123 | 0.490 | 0.773 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | Gestational Age | -0.046 | 0.041 | 3917 | 0.115 | 0.258 | 0.462 | 0.011 | 0.038 | 4196 | 0.122 | 0.770 | 0.871 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | Birth weight | 0.007 | 0.039 | 3917 | 0.114 | 0.868 | 0.922 | -0.058 | 0.038 | 4196 | 0.123 | 0.131 | 0.348 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | Tobacco use | 0.037 | 0.045 | 3917 | 0.114 | 0.406 | 0.727 | -0.068 | 0.043 | 4196 | 0.122 | 0.114 | 0.492 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | Alcohol use | -0.001 | 0.032 | 3917 | 0.114 | 0.971 | 0.998 | 0.030 | 0.031 | 4196 | 0.123 | 0.335 | 0.814 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | Marijuana use | 0.086 | 0.063 | 3917 | 0.114 | 0.170 | 0.774 | 0.000 | 0.062 | 4196 | 0.122 | 1.000 | 1.000 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | Pregnancy complications | -0.053 | 0.028 | 3917 | 0.115 | 0.061 | 0.322 | 0.003 | 0.028 | 4196 | 0.122 | 0.926 | 0.954 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | Birth complications | 0.030 | 0.032 | 3917 | 0.114 | 0.347 | 0.884 | 0.052 | 0.029 | 4196 | 0.122 | 0.076 | 0.572 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | Unplanned pregnancy | 0.017 | 0.032 | 3917 | 0.246 | 0.595 | 0.979 | 0.035 | 0.032 | 4196 | 0.247 | 0.268 | 0.911 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | C-Section | -0.010 | 0.029 | 3917 | 0.246 | 0.731 | 0.994 | -0.046 | 0.028 | 4196 | 0.247 | 0.098 | 0.255 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | Gestational Age | -0.103 | 0.040 | 3917 | 0.247 | 0.011 | 0.068 | -0.081 | 0.038 | 4196 | 0.248 | 0.032 | 0.126 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | Birth weight | -0.082 | 0.039 | 3917 | 0.247 | 0.035 | 0.092 | -0.065 | 0.038 | 4196 | 0.247 | 0.087 | 0.270 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | Tobacco use | 0.063 | 0.044 | 3917 | 0.246 | 0.153 | 0.645 | 0.015 | 0.043 | 4196 | 0.247 | 0.730 | 0.887 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | Alcohol use | 0.029 | 0.032 | 3917 | 0.246 | 0.356 | 0.896 | -0.020 | 0.031 | 4196 | 0.247 | 0.519 | 0.882 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | Marijuana use | 0.016 | 0.062 | 3917 | 0.246 | 0.791 | 0.882 | 0.009 | 0.062 | 4196 | 0.247 | 0.887 | 1.000 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | Pregnancy complications | 0.003 | 0.028 | 3917 | 0.246 | 0.915 | 0.972 | 0.028 | 0.028 | 4196 | 0.247 | 0.318 | 0.562 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | Birth complications | -0.022 | 0.032 | 3917 | 0.246 | 0.494 | 0.884 | -0.037 | 0.029 | 4196 | 0.247 | 0.212 | 0.792 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | Unplanned pregnancy | -0.032 | 0.036 | 3917 | 0.056 | 0.368 | 0.979 | 0.047 | 0.035 | 4196 | 0.037 | 0.180 | 0.846 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | C-Section | 0.072 | 0.032 | 3917 | 0.057 | 0.026 | 0.162 | 0.059 | 0.031 | 4196 | 0.038 | 0.055 | 0.163 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | Gestational Age | 0.055 | 0.045 | 3917 | 0.056 | 0.217 | 0.422 | 0.104 | 0.042 | 4196 | 0.038 | 0.013 | 0.075 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | Birth weight | 0.127 | 0.043 | 3917 | 0.057 | 0.003 | 0.022 | 0.070 | 0.042 | 4196 | 0.037 | 0.097 | 0.287 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | Tobacco use | 0.023 | 0.049 | 3917 | 0.055 | 0.636 | 0.844 | 0.009 | 0.048 | 4196 | 0.036 | 0.846 | 0.914 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | Alcohol use | 0.008 | 0.035 | 3917 | 0.055 | 0.820 | 0.979 | -0.030 | 0.035 | 4196 | 0.036 | 0.378 | 0.826 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | Marijuana use | -0.088 | 0.069 | 3917 | 0.056 | 0.206 | 0.790 | -0.001 | 0.068 | 4196 | 0.036 | 0.984 | 1.000 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | Pregnancy complications | 0.010 | 0.031 | 3917 | 0.055 | 0.747 | 0.971 | 0.082 | 0.031 | 4196 | 0.038 | 0.007 | 0.139 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | Birth complications | -0.065 | 0.035 | 3917 | 0.056 | 0.063 | 0.464 | 0.036 | 0.033 | 4196 | 0.037 | 0.270 | 0.802 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | Unplanned pregnancy | -0.019 | 0.028 | 3917 | 0.391 | 0.500 | 0.979 | 0.039 | 0.028 | 4196 | 0.401 | 0.160 | 0.846 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | C-Section | 0.024 | 0.026 | 3917 | 0.391 | 0.339 | 0.582 | 0.003 | 0.024 | 4196 | 0.401 | 0.916 | 0.985 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | Gestational Age | -0.080 | 0.035 | 3917 | 0.393 | 0.024 | 0.096 | -0.066 | 0.033 | 4196 | 0.403 | 0.044 | 0.148 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | Birth weight | 0.008 | 0.034 | 3917 | 0.391 | 0.809 | 0.888 | -0.035 | 0.033 | 4196 | 0.402 | 0.296 | 0.559 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | Tobacco use | -0.039 | 0.039 | 3917 | 0.392 | 0.317 | 0.724 | 0.007 | 0.037 | 4196 | 0.401 | 0.842 | 0.914 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | Alcohol use | -0.021 | 0.028 | 3917 | 0.391 | 0.443 | 0.964 | -0.010 | 0.027 | 4196 | 0.401 | 0.713 | 0.906 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | Marijuana use | -0.065 | 0.055 | 3917 | 0.392 | 0.239 | 0.790 | 0.024 | 0.054 | 4196 | 0.401 | 0.648 | 1.000 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | Pregnancy complications | 0.002 | 0.025 | 3917 | 0.391 | 0.936 | 0.973 | 0.018 | 0.024 | 4196 | 0.401 | 0.442 | 0.651 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | Birth complications | -0.019 | 0.028 | 3917 | 0.391 | 0.502 | 0.884 | -0.023 | 0.025 | 4196 | 0.401 | 0.377 | 0.802 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | Unplanned pregnancy | 0.004 | 0.029 | 3917 | 0.364 | 0.883 | 0.979 | -0.004 | 0.029 | 4196 | 0.357 | 0.889 | 0.981 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | C-Section | -0.044 | 0.026 | 3917 | 0.364 | 0.096 | 0.248 | 0.016 | 0.025 | 4196 | 0.357 | 0.517 | 0.773 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | Gestational Age | 0.030 | 0.037 | 3917 | 0.364 | 0.413 | 0.573 | 0.084 | 0.034 | 4196 | 0.359 | 0.015 | 0.079 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | Birth weight | 0.053 | 0.035 | 3917 | 0.364 | 0.134 | 0.294 | 0.047 | 0.035 | 4196 | 0.358 | 0.180 | 0.421 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | Tobacco use | 0.031 | 0.040 | 3917 | 0.364 | 0.438 | 0.750 | 0.090 | 0.039 | 4196 | 0.358 | 0.021 | 0.291 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | Alcohol use | 0.009 | 0.029 | 3917 | 0.364 | 0.752 | 0.979 | 0.057 | 0.028 | 4196 | 0.357 | 0.045 | 0.635 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | Marijuana use | 0.050 | 0.057 | 3917 | 0.364 | 0.381 | 0.859 | 0.059 | 0.056 | 4196 | 0.357 | 0.290 | 0.921 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | Pregnancy complications | -0.015 | 0.026 | 3917 | 0.364 | 0.558 | 0.904 | -0.041 | 0.025 | 4196 | 0.357 | 0.100 | 0.360 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | Birth complications | -0.011 | 0.029 | 3917 | 0.364 | 0.706 | 0.884 | -0.057 | 0.027 | 4196 | 0.357 | 0.032 | 0.511 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | Unplanned pregnancy | 0.069 | 0.035 | 3917 | 0.067 | 0.053 | 0.908 | -0.012 | 0.034 | 4196 | 0.091 | 0.721 | 0.964 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | C-Section | 0.000 | 0.032 | 3917 | 0.067 | 0.996 | 0.996 | -0.067 | 0.030 | 4196 | 0.093 | 0.027 | 0.103 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | Gestational Age | 0.039 | 0.044 | 3917 | 0.067 | 0.376 | 0.545 | -0.036 | 0.041 | 4196 | 0.091 | 0.385 | 0.606 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | Birth weight | 0.041 | 0.043 | 3917 | 0.067 | 0.341 | 0.516 | -0.001 | 0.041 | 4196 | 0.091 | 0.978 | 0.978 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | Tobacco use | 0.024 | 0.049 | 3917 | 0.067 | 0.615 | 0.844 | -0.072 | 0.046 | 4196 | 0.091 | 0.122 | 0.492 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | Alcohol use | 0.015 | 0.035 | 3917 | 0.067 | 0.674 | 0.975 | -0.052 | 0.034 | 4196 | 0.092 | 0.124 | 0.635 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | Marijuana use | 0.065 | 0.068 | 3917 | 0.067 | 0.345 | 0.859 | 0.093 | 0.067 | 4196 | 0.092 | 0.165 | 0.921 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | Pregnancy complications | 0.032 | 0.031 | 3917 | 0.067 | 0.294 | 0.688 | 0.050 | 0.030 | 4196 | 0.092 | 0.094 | 0.357 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | Birth complications | 0.064 | 0.035 | 3917 | 0.067 | 0.064 | 0.464 | -0.021 | 0.032 | 4196 | 0.091 | 0.506 | 0.839 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | Unplanned pregnancy | -0.013 | 0.027 | 3917 | 0.463 | 0.639 | 0.979 | -0.013 | 0.027 | 4196 | 0.462 | 0.620 | 0.912 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | C-Section | -0.053 | 0.024 | 3917 | 0.463 | 0.030 | 0.166 | -0.005 | 0.023 | 4196 | 0.462 | 0.838 | 0.965 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | Gestational Age | -0.003 | 0.034 | 3917 | 0.463 | 0.934 | 0.934 | -0.007 | 0.032 | 4196 | 0.462 | 0.816 | 0.885 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | Birth weight | 0.011 | 0.033 | 3917 | 0.463 | 0.728 | 0.825 | -0.016 | 0.032 | 4196 | 0.462 | 0.612 | 0.794 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | Tobacco use | -0.034 | 0.037 | 3917 | 0.463 | 0.358 | 0.724 | 0.009 | 0.036 | 4196 | 0.462 | 0.806 | 0.904 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | Alcohol use | -0.009 | 0.027 | 3917 | 0.463 | 0.744 | 0.979 | -0.010 | 0.026 | 4196 | 0.462 | 0.707 | 0.906 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | Marijuana use | -0.047 | 0.052 | 3917 | 0.463 | 0.368 | 0.859 | 0.002 | 0.052 | 4196 | 0.462 | 0.965 | 1.000 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | Pregnancy complications | 0.013 | 0.024 | 3917 | 0.463 | 0.596 | 0.932 | 0.001 | 0.023 | 4196 | 0.462 | 0.968 | 0.968 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | Birth complications | 0.033 | 0.026 | 3917 | 0.463 | 0.217 | 0.868 | 0.014 | 0.025 | 4196 | 0.462 | 0.573 | 0.876 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | Unplanned pregnancy | 0.032 | 0.023 | 3917 | 0.586 | 0.167 | 0.979 | 0.032 | 0.023 | 4196 | 0.581 | 0.157 | 0.846 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | C-Section | 0.007 | 0.021 | 3917 | 0.586 | 0.722 | 0.994 | -0.007 | 0.020 | 4196 | 0.581 | 0.727 | 0.874 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | Gestational Age | -0.027 | 0.029 | 3917 | 0.586 | 0.346 | 0.523 | -0.027 | 0.027 | 4196 | 0.581 | 0.326 | 0.581 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | Birth weight | -0.078 | 0.028 | 3917 | 0.586 | 0.005 | 0.024 | 0.015 | 0.027 | 4196 | 0.581 | 0.577 | 0.794 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | Tobacco use | -0.008 | 0.032 | 3917 | 0.586 | 0.808 | 0.919 | 0.014 | 0.031 | 4196 | 0.581 | 0.637 | 0.887 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | Alcohol use | 0.017 | 0.023 | 3917 | 0.585 | 0.451 | 0.964 | -0.013 | 0.022 | 4196 | 0.581 | 0.548 | 0.882 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | Marijuana use | 0.054 | 0.045 | 3917 | 0.586 | 0.225 | 0.790 | -0.005 | 0.044 | 4196 | 0.581 | 0.910 | 1.000 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | Pregnancy complications | -0.004 | 0.020 | 3917 | 0.586 | 0.835 | 0.971 | -0.045 | 0.020 | 4196 | 0.581 | 0.024 | 0.207 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | Birth complications | -0.001 | 0.023 | 3917 | 0.586 | 0.951 | 0.970 | -0.033 | 0.021 | 4196 | 0.581 | 0.115 | 0.712 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | Unplanned pregnancy | -0.019 | 0.027 | 3917 | 0.445 | 0.496 | 0.979 | -0.034 | 0.027 | 4196 | 0.448 | 0.200 | 0.846 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | C-Section | -0.036 | 0.025 | 3917 | 0.445 | 0.139 | 0.316 | 0.019 | 0.024 | 4196 | 0.448 | 0.412 | 0.737 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | Gestational Age | 0.020 | 0.034 | 3917 | 0.445 | 0.556 | 0.641 | 0.016 | 0.032 | 4196 | 0.448 | 0.606 | 0.793 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | Birth weight | 0.044 | 0.033 | 3917 | 0.445 | 0.177 | 0.355 | 0.003 | 0.032 | 4196 | 0.448 | 0.923 | 0.948 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | Tobacco use | -0.017 | 0.037 | 3917 | 0.444 | 0.654 | 0.844 | 0.012 | 0.036 | 4196 | 0.448 | 0.737 | 0.887 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | Alcohol use | 0.002 | 0.027 | 3917 | 0.444 | 0.937 | 0.998 | 0.022 | 0.026 | 4196 | 0.448 | 0.401 | 0.826 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | Marijuana use | 0.037 | 0.053 | 3917 | 0.445 | 0.480 | 0.859 | 0.052 | 0.052 | 4196 | 0.448 | 0.323 | 0.921 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | Pregnancy complications | 0.054 | 0.024 | 3917 | 0.445 | 0.022 | 0.249 | 0.003 | 0.023 | 4196 | 0.448 | 0.891 | 0.947 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | Birth complications | -0.022 | 0.027 | 3917 | 0.445 | 0.402 | 0.884 | 0.029 | 0.025 | 4196 | 0.448 | 0.249 | 0.802 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | Unplanned pregnancy | 0.012 | 0.036 | 3917 | 0.066 | 0.740 | 0.979 | 0.071 | 0.035 | 4196 | 0.052 | 0.044 | 0.846 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | C-Section | 0.055 | 0.032 | 3917 | 0.066 | 0.085 | 0.248 | 0.022 | 0.031 | 4196 | 0.051 | 0.480 | 0.773 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | Gestational Age | -0.100 | 0.044 | 3917 | 0.068 | 0.025 | 0.096 | -0.063 | 0.042 | 4196 | 0.051 | 0.133 | 0.322 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | Birth weight | -0.046 | 0.043 | 3917 | 0.067 | 0.286 | 0.463 | 0.052 | 0.042 | 4196 | 0.051 | 0.220 | 0.483 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | Tobacco use | 0.024 | 0.049 | 3917 | 0.066 | 0.614 | 0.844 | 0.065 | 0.047 | 4196 | 0.051 | 0.169 | 0.492 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | Alcohol use | 0.036 | 0.035 | 3917 | 0.066 | 0.303 | 0.896 | 0.066 | 0.034 | 4196 | 0.052 | 0.056 | 0.635 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | Marijuana use | -0.009 | 0.069 | 3917 | 0.066 | 0.898 | 0.925 | 0.031 | 0.068 | 4196 | 0.051 | 0.644 | 1.000 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | Pregnancy complications | 0.029 | 0.031 | 3917 | 0.066 | 0.342 | 0.775 | 0.039 | 0.030 | 4196 | 0.051 | 0.201 | 0.405 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | Birth complications | -0.028 | 0.035 | 3917 | 0.066 | 0.419 | 0.884 | 0.014 | 0.032 | 4196 | 0.051 | 0.656 | 0.878 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | Unplanned pregnancy | -0.007 | 0.022 | 3917 | 0.550 | 0.764 | 0.979 | 0.036 | 0.021 | 4196 | 0.577 | 0.089 | 0.846 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | C-Section | 0.007 | 0.020 | 3917 | 0.551 | 0.717 | 0.994 | 0.012 | 0.018 | 4196 | 0.577 | 0.523 | 0.773 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | Gestational Age | 0.146 | 0.027 | 3917 | 0.556 | 0.000 | 0.000 | 0.053 | 0.025 | 4196 | 0.579 | 0.033 | 0.126 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | Birth weight | 0.015 | 0.026 | 3917 | 0.551 | 0.560 | 0.733 | -0.008 | 0.025 | 4196 | 0.577 | 0.741 | 0.869 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | Tobacco use | -0.013 | 0.030 | 3917 | 0.550 | 0.670 | 0.844 | 0.037 | 0.028 | 4196 | 0.577 | 0.192 | 0.492 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | Alcohol use | 0.008 | 0.021 | 3917 | 0.550 | 0.712 | 0.979 | 0.023 | 0.021 | 4196 | 0.577 | 0.270 | 0.812 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | Marijuana use | -0.063 | 0.042 | 3917 | 0.551 | 0.138 | 0.774 | 0.020 | 0.041 | 4196 | 0.577 | 0.624 | 1.000 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | Pregnancy complications | 0.004 | 0.019 | 3917 | 0.550 | 0.842 | 0.971 | -0.030 | 0.018 | 4196 | 0.577 | 0.095 | 0.357 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | Birth complications | 0.023 | 0.021 | 3917 | 0.551 | 0.275 | 0.884 | 0.014 | 0.019 | 4196 | 0.577 | 0.464 | 0.828 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | Unplanned pregnancy | 0.058 | 0.031 | 3917 | 0.256 | 0.062 | 0.908 | -0.015 | 0.030 | 4196 | 0.269 | 0.608 | 0.912 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | C-Section | 0.056 | 0.028 | 3917 | 0.256 | 0.046 | 0.210 | 0.089 | 0.026 | 4196 | 0.271 | 0.001 | 0.011 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | Gestational Age | 0.061 | 0.039 | 3917 | 0.256 | 0.114 | 0.274 | 0.081 | 0.035 | 4196 | 0.270 | 0.022 | 0.100 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | Birth weight | 0.121 | 0.037 | 3917 | 0.258 | 0.001 | 0.012 | 0.076 | 0.036 | 4196 | 0.269 | 0.034 | 0.179 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | Tobacco use | 0.000 | 0.042 | 3917 | 0.255 | 1.000 | 1.000 | -0.024 | 0.040 | 4196 | 0.269 | 0.545 | 0.887 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | Alcohol use | 0.016 | 0.030 | 3917 | 0.255 | 0.595 | 0.975 | -0.014 | 0.029 | 4196 | 0.269 | 0.635 | 0.906 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | Marijuana use | -0.011 | 0.060 | 3917 | 0.255 | 0.850 | 0.897 | -0.005 | 0.058 | 4196 | 0.269 | 0.934 | 1.000 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | Pregnancy complications | 0.012 | 0.027 | 3917 | 0.255 | 0.654 | 0.946 | 0.050 | 0.026 | 4196 | 0.270 | 0.052 | 0.296 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | Birth complications | 0.013 | 0.030 | 3917 | 0.255 | 0.664 | 0.884 | 0.039 | 0.027 | 4196 | 0.269 | 0.157 | 0.792 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | Unplanned pregnancy | -0.016 | 0.029 | 3917 | 0.366 | 0.582 | 0.979 | -0.022 | 0.029 | 4196 | 0.348 | 0.443 | 0.912 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | C-Section | -0.006 | 0.026 | 3917 | 0.367 | 0.803 | 0.996 | 0.037 | 0.025 | 4196 | 0.348 | 0.140 | 0.329 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | Gestational Age | -0.026 | 0.036 | 3917 | 0.367 | 0.463 | 0.606 | -0.006 | 0.034 | 4196 | 0.348 | 0.855 | 0.885 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | Birth weight | -0.015 | 0.034 | 3917 | 0.367 | 0.655 | 0.789 | -0.111 | 0.034 | 4196 | 0.349 | 0.001 | 0.041 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | Tobacco use | 0.002 | 0.039 | 3917 | 0.366 | 0.954 | 0.985 | 0.051 | 0.039 | 4196 | 0.348 | 0.188 | 0.492 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | Alcohol use | -0.030 | 0.028 | 3917 | 0.367 | 0.283 | 0.896 | 0.041 | 0.028 | 4196 | 0.348 | 0.141 | 0.635 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | Marijuana use | -0.061 | 0.055 | 3917 | 0.367 | 0.267 | 0.790 | -0.003 | 0.056 | 4196 | 0.348 | 0.955 | 1.000 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | Pregnancy complications | -0.038 | 0.025 | 3917 | 0.367 | 0.132 | 0.392 | 0.012 | 0.025 | 4196 | 0.348 | 0.627 | 0.805 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | Birth complications | 0.014 | 0.028 | 3917 | 0.366 | 0.615 | 0.884 | -0.009 | 0.026 | 4196 | 0.348 | 0.739 | 0.878 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | Unplanned pregnancy | -0.041 | 0.033 | 3917 | 0.135 | 0.224 | 0.979 | 0.020 | 0.032 | 4196 | 0.156 | 0.534 | 0.912 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | C-Section | 0.047 | 0.030 | 3917 | 0.135 | 0.121 | 0.293 | 0.070 | 0.028 | 4196 | 0.157 | 0.013 | 0.058 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | Gestational Age | 0.137 | 0.042 | 3917 | 0.136 | 0.001 | 0.009 | 0.109 | 0.038 | 4196 | 0.157 | 0.004 | 0.044 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | Birth weight | 0.169 | 0.040 | 3917 | 0.138 | 0.000 | 0.001 | 0.117 | 0.039 | 4196 | 0.157 | 0.002 | 0.041 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | Tobacco use | 0.039 | 0.046 | 3917 | 0.135 | 0.398 | 0.727 | 0.013 | 0.043 | 4196 | 0.156 | 0.765 | 0.887 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | Alcohol use | -0.021 | 0.033 | 3917 | 0.134 | 0.530 | 0.968 | 0.035 | 0.031 | 4196 | 0.156 | 0.266 | 0.812 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | Marijuana use | 0.074 | 0.064 | 3917 | 0.135 | 0.246 | 0.790 | -0.005 | 0.062 | 4196 | 0.155 | 0.935 | 1.000 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | Pregnancy complications | 0.048 | 0.029 | 3917 | 0.135 | 0.099 | 0.367 | 0.049 | 0.028 | 4196 | 0.156 | 0.079 | 0.345 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | Birth complications | 0.053 | 0.033 | 3917 | 0.135 | 0.102 | 0.511 | 0.043 | 0.030 | 4196 | 0.156 | 0.147 | 0.792 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | Unplanned pregnancy | 0.001 | 0.026 | 3917 | 0.465 | 0.976 | 0.979 | -0.024 | 0.026 | 4196 | 0.466 | 0.345 | 0.912 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | C-Section | -0.067 | 0.023 | 3917 | 0.466 | 0.004 | 0.044 | -0.069 | 0.022 | 4196 | 0.466 | 0.002 | 0.013 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | Gestational Age | -0.111 | 0.033 | 3917 | 0.465 | 0.001 | 0.009 | -0.124 | 0.031 | 4196 | 0.467 | 0.000 | 0.003 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | Birth weight | -0.151 | 0.031 | 3917 | 0.467 | 0.000 | 0.000 | -0.081 | 0.031 | 4196 | 0.466 | 0.009 | 0.066 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | Tobacco use | 0.002 | 0.036 | 3917 | 0.465 | 0.966 | 0.985 | 0.015 | 0.035 | 4196 | 0.466 | 0.657 | 0.887 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | Alcohol use | 0.043 | 0.026 | 3917 | 0.465 | 0.091 | 0.797 | -0.041 | 0.025 | 4196 | 0.466 | 0.103 | 0.635 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | Marijuana use | 0.081 | 0.050 | 3917 | 0.465 | 0.108 | 0.774 | 0.085 | 0.050 | 4196 | 0.466 | 0.086 | 0.921 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | Pregnancy complications | -0.043 | 0.023 | 3917 | 0.465 | 0.058 | 0.322 | -0.036 | 0.022 | 4196 | 0.466 | 0.107 | 0.364 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | Birth complications | -0.068 | 0.025 | 3917 | 0.465 | 0.008 | 0.310 | -0.023 | 0.024 | 4196 | 0.466 | 0.325 | 0.802 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | Unplanned pregnancy | -0.005 | 0.034 | 3917 | 0.147 | 0.890 | 0.979 | 0.023 | 0.033 | 4196 | 0.145 | 0.495 | 0.912 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | C-Section | 0.088 | 0.031 | 3917 | 0.149 | 0.005 | 0.044 | 0.004 | 0.029 | 4196 | 0.145 | 0.880 | 0.985 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | Gestational Age | 0.014 | 0.043 | 3917 | 0.147 | 0.744 | 0.792 | 0.037 | 0.040 | 4196 | 0.145 | 0.350 | 0.581 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | Birth weight | 0.106 | 0.041 | 3917 | 0.148 | 0.010 | 0.038 | -0.027 | 0.040 | 4196 | 0.144 | 0.499 | 0.771 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | Tobacco use | -0.090 | 0.047 | 3917 | 0.148 | 0.054 | 0.469 | -0.068 | 0.045 | 4196 | 0.145 | 0.128 | 0.492 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | Alcohol use | 0.002 | 0.034 | 3917 | 0.147 | 0.962 | 0.998 | -0.004 | 0.033 | 4196 | 0.145 | 0.909 | 0.959 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | Marijuana use | 0.052 | 0.066 | 3917 | 0.147 | 0.431 | 0.859 | 0.003 | 0.065 | 4196 | 0.145 | 0.968 | 1.000 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | Pregnancy complications | 0.048 | 0.030 | 3917 | 0.147 | 0.105 | 0.367 | 0.014 | 0.029 | 4196 | 0.145 | 0.621 | 0.805 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | Birth complications | 0.012 | 0.033 | 3917 | 0.147 | 0.715 | 0.884 | 0.026 | 0.031 | 4196 | 0.145 | 0.405 | 0.802 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | Unplanned pregnancy | 0.032 | 0.028 | 3917 | 0.392 | 0.254 | 0.979 | 0.017 | 0.027 | 4196 | 0.411 | 0.535 | 0.912 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | C-Section | 0.024 | 0.026 | 3917 | 0.392 | 0.338 | 0.582 | 0.008 | 0.024 | 4196 | 0.411 | 0.732 | 0.874 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | Gestational Age | -0.078 | 0.035 | 3917 | 0.393 | 0.029 | 0.103 | -0.007 | 0.033 | 4196 | 0.411 | 0.833 | 0.885 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | Birth weight | -0.004 | 0.034 | 3917 | 0.392 | 0.896 | 0.932 | -0.030 | 0.033 | 4196 | 0.411 | 0.360 | 0.627 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | Tobacco use | -0.018 | 0.039 | 3917 | 0.392 | 0.638 | 0.844 | -0.051 | 0.037 | 4196 | 0.411 | 0.167 | 0.492 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | Alcohol use | -0.058 | 0.028 | 3917 | 0.392 | 0.037 | 0.510 | -0.039 | 0.027 | 4196 | 0.411 | 0.149 | 0.635 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | Marijuana use | 0.042 | 0.055 | 3917 | 0.392 | 0.439 | 0.859 | 0.042 | 0.053 | 4196 | 0.411 | 0.433 | 1.000 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | Pregnancy complications | -0.005 | 0.025 | 3917 | 0.392 | 0.832 | 0.971 | -0.030 | 0.024 | 4196 | 0.411 | 0.202 | 0.405 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | Birth complications | 0.006 | 0.028 | 3917 | 0.392 | 0.833 | 0.969 | -0.047 | 0.025 | 4196 | 0.412 | 0.060 | 0.511 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | Unplanned pregnancy | 0.015 | 0.030 | 3917 | 0.337 | 0.613 | 0.979 | 0.016 | 0.030 | 4196 | 0.332 | 0.588 | 0.912 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | C-Section | -0.001 | 0.027 | 3917 | 0.337 | 0.971 | 0.996 | -0.028 | 0.026 | 4196 | 0.332 | 0.289 | 0.546 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | Gestational Age | 0.047 | 0.038 | 3917 | 0.337 | 0.215 | 0.422 | 0.024 | 0.036 | 4196 | 0.332 | 0.496 | 0.703 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | Birth weight | 0.037 | 0.036 | 3917 | 0.337 | 0.312 | 0.481 | 0.019 | 0.036 | 4196 | 0.332 | 0.596 | 0.794 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | Tobacco use | -0.006 | 0.042 | 3917 | 0.337 | 0.885 | 0.985 | 0.127 | 0.040 | 4196 | 0.333 | 0.002 | 0.108 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | Alcohol use | -0.055 | 0.030 | 3917 | 0.337 | 0.067 | 0.756 | 0.039 | 0.029 | 4196 | 0.332 | 0.187 | 0.718 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | Marijuana use | -0.080 | 0.058 | 3917 | 0.337 | 0.170 | 0.774 | 0.102 | 0.058 | 4196 | 0.332 | 0.079 | 0.921 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | Pregnancy complications | 0.083 | 0.026 | 3917 | 0.338 | 0.002 | 0.109 | 0.055 | 0.026 | 4196 | 0.332 | 0.035 | 0.235 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | Birth complications | 0.026 | 0.030 | 3917 | 0.337 | 0.372 | 0.884 | 0.052 | 0.028 | 4196 | 0.332 | 0.058 | 0.511 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | Unplanned pregnancy | -0.033 | 0.032 | 3917 | 0.224 | 0.300 | 0.979 | -0.046 | 0.032 | 4196 | 0.202 | 0.152 | 0.846 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | C-Section | -0.057 | 0.029 | 3917 | 0.225 | 0.051 | 0.216 | -0.056 | 0.028 | 4196 | 0.203 | 0.045 | 0.147 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | Gestational Age | -0.095 | 0.040 | 3917 | 0.226 | 0.018 | 0.095 | -0.077 | 0.038 | 4196 | 0.204 | 0.042 | 0.148 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | Birth weight | 0.059 | 0.039 | 3917 | 0.223 | 0.126 | 0.286 | 0.019 | 0.038 | 4196 | 0.202 | 0.624 | 0.794 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | Tobacco use | -0.037 | 0.044 | 3917 | 0.224 | 0.405 | 0.727 | 0.002 | 0.043 | 4196 | 0.202 | 0.965 | 0.994 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | Alcohol use | -0.010 | 0.032 | 3917 | 0.224 | 0.740 | 0.979 | -0.046 | 0.031 | 4196 | 0.202 | 0.140 | 0.635 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | Marijuana use | -0.101 | 0.062 | 3917 | 0.224 | 0.103 | 0.774 | 0.006 | 0.062 | 4196 | 0.202 | 0.924 | 1.000 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | Pregnancy complications | 0.008 | 0.028 | 3917 | 0.224 | 0.774 | 0.971 | 0.023 | 0.028 | 4196 | 0.202 | 0.405 | 0.626 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | Birth complications | 0.015 | 0.031 | 3917 | 0.224 | 0.622 | 0.884 | -0.027 | 0.029 | 4196 | 0.202 | 0.353 | 0.802 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | Unplanned pregnancy | -0.007 | 0.029 | 3917 | 0.353 | 0.803 | 0.979 | 0.004 | 0.029 | 4196 | 0.343 | 0.893 | 0.981 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | C-Section | -0.060 | 0.027 | 3917 | 0.354 | 0.023 | 0.158 | -0.080 | 0.026 | 4196 | 0.345 | 0.002 | 0.013 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | Gestational Age | -0.032 | 0.037 | 3917 | 0.353 | 0.391 | 0.554 | -0.046 | 0.035 | 4196 | 0.344 | 0.185 | 0.392 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | Birth weight | 0.017 | 0.035 | 3917 | 0.353 | 0.624 | 0.789 | 0.067 | 0.035 | 4196 | 0.343 | 0.057 | 0.217 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | Tobacco use | 0.087 | 0.040 | 3917 | 0.354 | 0.032 | 0.434 | 0.086 | 0.039 | 4196 | 0.344 | 0.030 | 0.335 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | Alcohol use | 0.060 | 0.029 | 3917 | 0.354 | 0.037 | 0.510 | 0.018 | 0.029 | 4196 | 0.343 | 0.537 | 0.882 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | Marijuana use | 0.193 | 0.057 | 3917 | 0.355 | 0.001 | 0.047 | 0.056 | 0.057 | 4196 | 0.344 | 0.323 | 0.921 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | Pregnancy complications | 0.020 | 0.026 | 3917 | 0.353 | 0.437 | 0.804 | 0.010 | 0.025 | 4196 | 0.343 | 0.699 | 0.865 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | Birth complications | -0.042 | 0.029 | 3917 | 0.353 | 0.146 | 0.619 | 0.002 | 0.027 | 4196 | 0.343 | 0.932 | 0.969 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | Unplanned pregnancy | -0.047 | 0.031 | 3917 | 0.254 | 0.135 | 0.979 | -0.004 | 0.031 | 4196 | 0.251 | 0.895 | 0.981 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | C-Section | 0.003 | 0.028 | 3917 | 0.254 | 0.915 | 0.996 | 0.075 | 0.027 | 4196 | 0.252 | 0.005 | 0.031 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | Gestational Age | 0.051 | 0.039 | 3917 | 0.254 | 0.194 | 0.413 | 0.044 | 0.037 | 4196 | 0.251 | 0.226 | 0.451 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | Birth weight | 0.035 | 0.038 | 3917 | 0.254 | 0.351 | 0.519 | -0.050 | 0.037 | 4196 | 0.250 | 0.178 | 0.421 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | Tobacco use | -0.056 | 0.043 | 3917 | 0.254 | 0.190 | 0.645 | 0.058 | 0.041 | 4196 | 0.251 | 0.159 | 0.492 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | Alcohol use | -0.048 | 0.031 | 3917 | 0.255 | 0.121 | 0.797 | 0.005 | 0.030 | 4196 | 0.251 | 0.877 | 0.959 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | Marijuana use | -0.059 | 0.061 | 3917 | 0.254 | 0.330 | 0.859 | -0.014 | 0.059 | 4196 | 0.251 | 0.812 | 1.000 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | Pregnancy complications | 0.007 | 0.027 | 3917 | 0.254 | 0.785 | 0.971 | 0.020 | 0.027 | 4196 | 0.251 | 0.454 | 0.651 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | Birth complications | -0.030 | 0.031 | 3917 | 0.254 | 0.322 | 0.884 | -0.024 | 0.028 | 4196 | 0.250 | 0.386 | 0.802 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | Unplanned pregnancy | -0.028 | 0.030 | 3917 | 0.350 | 0.343 | 0.979 | 0.037 | 0.028 | 4196 | 0.362 | 0.196 | 0.846 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | C-Section | 0.000 | 0.027 | 3917 | 0.350 | 0.990 | 0.996 | 0.001 | 0.025 | 4196 | 0.362 | 0.984 | 0.985 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | Gestational Age | -0.072 | 0.037 | 3917 | 0.351 | 0.053 | 0.162 | -0.046 | 0.034 | 4196 | 0.362 | 0.172 | 0.378 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | Birth weight | -0.082 | 0.036 | 3917 | 0.351 | 0.021 | 0.061 | -0.059 | 0.034 | 4196 | 0.362 | 0.084 | 0.270 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | Tobacco use | 0.011 | 0.040 | 3917 | 0.350 | 0.786 | 0.919 | -0.011 | 0.038 | 4196 | 0.362 | 0.770 | 0.887 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | Alcohol use | -0.033 | 0.029 | 3917 | 0.350 | 0.254 | 0.896 | 0.017 | 0.028 | 4196 | 0.362 | 0.538 | 0.882 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | Marijuana use | 0.003 | 0.057 | 3917 | 0.350 | 0.952 | 0.952 | 0.038 | 0.055 | 4196 | 0.362 | 0.494 | 1.000 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | Pregnancy complications | -0.065 | 0.026 | 3917 | 0.351 | 0.012 | 0.249 | -0.036 | 0.025 | 4196 | 0.362 | 0.143 | 0.392 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | Birth complications | 0.057 | 0.029 | 3917 | 0.351 | 0.049 | 0.464 | 0.009 | 0.026 | 4196 | 0.362 | 0.726 | 0.878 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | Unplanned pregnancy | 0.004 | 0.035 | 3917 | 0.109 | 0.903 | 0.979 | 0.030 | 0.034 | 4196 | 0.103 | 0.380 | 0.912 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | C-Section | 0.056 | 0.031 | 3917 | 0.109 | 0.072 | 0.248 | 0.013 | 0.030 | 4196 | 0.103 | 0.655 | 0.874 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | Gestational Age | -0.011 | 0.044 | 3917 | 0.109 | 0.804 | 0.829 | 0.026 | 0.041 | 4196 | 0.103 | 0.529 | 0.734 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | Birth weight | 0.015 | 0.042 | 3917 | 0.109 | 0.713 | 0.821 | 0.066 | 0.041 | 4196 | 0.103 | 0.109 | 0.308 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | Tobacco use | 0.027 | 0.048 | 3917 | 0.109 | 0.568 | 0.844 | -0.018 | 0.046 | 4196 | 0.103 | 0.704 | 0.887 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | Alcohol use | 0.015 | 0.034 | 3917 | 0.109 | 0.657 | 0.975 | -0.011 | 0.034 | 4196 | 0.103 | 0.751 | 0.906 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | Marijuana use | 0.031 | 0.067 | 3917 | 0.109 | 0.640 | 0.859 | 0.064 | 0.066 | 4196 | 0.103 | 0.338 | 0.921 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | Pregnancy complications | -0.006 | 0.030 | 3917 | 0.109 | 0.841 | 0.971 | 0.053 | 0.030 | 4196 | 0.103 | 0.072 | 0.345 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | Birth complications | -0.008 | 0.034 | 3917 | 0.109 | 0.805 | 0.969 | 0.026 | 0.032 | 4196 | 0.103 | 0.410 | 0.802 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | Unplanned pregnancy | 0.020 | 0.030 | 3917 | 0.366 | 0.500 | 0.979 | 0.019 | 0.028 | 4196 | 0.407 | 0.490 | 0.912 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | C-Section | -0.014 | 0.027 | 3917 | 0.366 | 0.609 | 0.918 | -0.017 | 0.025 | 4196 | 0.407 | 0.505 | 0.773 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | Gestational Age | -0.021 | 0.037 | 3917 | 0.366 | 0.569 | 0.644 | -0.014 | 0.034 | 4196 | 0.407 | 0.682 | 0.842 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | Birth weight | -0.078 | 0.036 | 3917 | 0.367 | 0.029 | 0.082 | -0.043 | 0.034 | 4196 | 0.407 | 0.204 | 0.463 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | Tobacco use | -0.069 | 0.041 | 3917 | 0.366 | 0.088 | 0.497 | -0.037 | 0.038 | 4196 | 0.407 | 0.335 | 0.637 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | Alcohol use | -0.017 | 0.029 | 3917 | 0.366 | 0.551 | 0.968 | -0.055 | 0.028 | 4196 | 0.407 | 0.047 | 0.635 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | Marijuana use | 0.016 | 0.057 | 3917 | 0.366 | 0.774 | 0.878 | -0.007 | 0.055 | 4196 | 0.407 | 0.894 | 1.000 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | Pregnancy complications | 0.031 | 0.026 | 3917 | 0.366 | 0.235 | 0.615 | 0.005 | 0.024 | 4196 | 0.407 | 0.854 | 0.938 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | Birth complications | -0.024 | 0.029 | 3917 | 0.366 | 0.411 | 0.884 | -0.054 | 0.026 | 4196 | 0.407 | 0.039 | 0.511 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | Unplanned pregnancy | 0.037 | 0.024 | 3917 | 0.543 | 0.124 | 0.979 | 0.035 | 0.024 | 4196 | 0.528 | 0.147 | 0.846 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | C-Section | -0.022 | 0.022 | 3917 | 0.542 | 0.303 | 0.557 | 0.001 | 0.021 | 4196 | 0.527 | 0.943 | 0.985 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | Gestational Age | 0.018 | 0.030 | 3917 | 0.542 | 0.553 | 0.641 | 0.074 | 0.029 | 4196 | 0.528 | 0.010 | 0.062 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | Birth weight | 0.018 | 0.029 | 3917 | 0.542 | 0.546 | 0.729 | 0.024 | 0.029 | 4196 | 0.527 | 0.414 | 0.686 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | Tobacco use | -0.085 | 0.033 | 3917 | 0.543 | 0.010 | 0.194 | 0.061 | 0.032 | 4196 | 0.528 | 0.057 | 0.427 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | Alcohol use | -0.010 | 0.024 | 3917 | 0.542 | 0.671 | 0.975 | 0.038 | 0.024 | 4196 | 0.528 | 0.108 | 0.635 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | Marijuana use | 0.009 | 0.047 | 3917 | 0.542 | 0.852 | 0.897 | 0.045 | 0.047 | 4196 | 0.527 | 0.339 | 0.921 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | Pregnancy complications | -0.014 | 0.021 | 3917 | 0.542 | 0.493 | 0.829 | -0.019 | 0.021 | 4196 | 0.527 | 0.373 | 0.605 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | Birth complications | 0.010 | 0.024 | 3917 | 0.542 | 0.663 | 0.884 | -0.016 | 0.022 | 4196 | 0.527 | 0.475 | 0.828 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | Unplanned pregnancy | -0.021 | 0.035 | 3917 | 0.055 | 0.547 | 0.979 | 0.055 | 0.035 | 4196 | 0.058 | 0.110 | 0.846 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | C-Section | 0.005 | 0.032 | 3917 | 0.055 | 0.876 | 0.996 | 0.011 | 0.030 | 4196 | 0.057 | 0.727 | 0.874 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | Gestational Age | -0.029 | 0.044 | 3917 | 0.056 | 0.508 | 0.623 | 0.032 | 0.041 | 4196 | 0.057 | 0.441 | 0.666 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | Birth weight | 0.050 | 0.042 | 3917 | 0.056 | 0.234 | 0.416 | 0.126 | 0.042 | 4196 | 0.059 | 0.003 | 0.041 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | Tobacco use | -0.060 | 0.048 | 3917 | 0.056 | 0.210 | 0.679 | -0.018 | 0.047 | 4196 | 0.057 | 0.698 | 0.887 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | Alcohol use | 0.015 | 0.034 | 3917 | 0.056 | 0.652 | 0.975 | -0.011 | 0.034 | 4196 | 0.057 | 0.757 | 0.906 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | Marijuana use | -0.099 | 0.067 | 3917 | 0.056 | 0.142 | 0.774 | -0.019 | 0.067 | 4196 | 0.057 | 0.781 | 1.000 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | Pregnancy complications | 0.008 | 0.030 | 3917 | 0.055 | 0.802 | 0.971 | 0.072 | 0.030 | 4196 | 0.059 | 0.016 | 0.158 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | Birth complications | -0.004 | 0.034 | 3917 | 0.055 | 0.918 | 0.970 | 0.041 | 0.032 | 4196 | 0.058 | 0.201 | 0.792 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | Unplanned pregnancy | 0.044 | 0.025 | 3917 | 0.465 | 0.080 | 0.908 | -0.008 | 0.025 | 4196 | 0.445 | 0.739 | 0.964 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | C-Section | 0.005 | 0.023 | 3917 | 0.465 | 0.834 | 0.996 | -0.047 | 0.022 | 4196 | 0.446 | 0.034 | 0.121 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | Gestational Age | -0.022 | 0.032 | 3917 | 0.466 | 0.482 | 0.618 | -0.016 | 0.030 | 4196 | 0.445 | 0.601 | 0.793 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | Birth weight | 0.082 | 0.030 | 3917 | 0.465 | 0.007 | 0.028 | 0.082 | 0.030 | 4196 | 0.446 | 0.007 | 0.059 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | Tobacco use | 0.022 | 0.035 | 3917 | 0.465 | 0.519 | 0.840 | 0.000 | 0.034 | 4196 | 0.445 | 0.997 | 0.997 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | Alcohol use | -0.030 | 0.025 | 3917 | 0.465 | 0.232 | 0.896 | 0.004 | 0.025 | 4196 | 0.445 | 0.884 | 0.959 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | Marijuana use | -0.026 | 0.049 | 3917 | 0.465 | 0.589 | 0.859 | 0.022 | 0.049 | 4196 | 0.445 | 0.653 | 1.000 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | Pregnancy complications | -0.003 | 0.022 | 3917 | 0.465 | 0.894 | 0.972 | 0.002 | 0.022 | 4196 | 0.445 | 0.910 | 0.952 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | Birth complications | 0.014 | 0.025 | 3917 | 0.465 | 0.560 | 0.884 | -0.012 | 0.023 | 4196 | 0.445 | 0.592 | 0.876 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | Unplanned pregnancy | -0.012 | 0.023 | 3917 | 0.493 | 0.617 | 0.979 | -0.006 | 0.023 | 4196 | 0.484 | 0.793 | 0.964 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | C-Section | 0.027 | 0.021 | 3917 | 0.493 | 0.202 | 0.444 | -0.008 | 0.020 | 4196 | 0.484 | 0.696 | 0.874 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | Gestational Age | -0.071 | 0.029 | 3917 | 0.494 | 0.015 | 0.087 | -0.029 | 0.027 | 4196 | 0.484 | 0.291 | 0.535 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | Birth weight | 0.118 | 0.028 | 3917 | 0.494 | 0.000 | 0.001 | 0.070 | 0.028 | 4196 | 0.484 | 0.012 | 0.080 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | Tobacco use | 0.029 | 0.032 | 3917 | 0.493 | 0.363 | 0.724 | -0.017 | 0.031 | 4196 | 0.484 | 0.585 | 0.887 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | Alcohol use | 0.011 | 0.023 | 3917 | 0.494 | 0.633 | 0.975 | -0.007 | 0.022 | 4196 | 0.484 | 0.760 | 0.906 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | Marijuana use | -0.099 | 0.045 | 3917 | 0.494 | 0.029 | 0.490 | 0.037 | 0.044 | 4196 | 0.484 | 0.409 | 0.993 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | Pregnancy complications | 0.015 | 0.020 | 3917 | 0.493 | 0.455 | 0.814 | 0.003 | 0.020 | 4196 | 0.484 | 0.869 | 0.938 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | Birth complications | -0.011 | 0.023 | 3917 | 0.493 | 0.635 | 0.884 | -0.017 | 0.021 | 4196 | 0.484 | 0.434 | 0.820 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | Unplanned pregnancy | 0.013 | 0.023 | 3917 | 0.605 | 0.560 | 0.979 | 0.012 | 0.023 | 4196 | 0.578 | 0.609 | 0.912 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | C-Section | 0.015 | 0.021 | 3917 | 0.605 | 0.465 | 0.771 | 0.000 | 0.020 | 4196 | 0.578 | 0.985 | 0.985 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | Gestational Age | 0.043 | 0.028 | 3917 | 0.605 | 0.132 | 0.290 | 0.010 | 0.027 | 4196 | 0.578 | 0.713 | 0.842 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | Birth weight | -0.013 | 0.027 | 3917 | 0.605 | 0.647 | 0.789 | 0.003 | 0.028 | 4196 | 0.578 | 0.903 | 0.948 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | Tobacco use | -0.038 | 0.031 | 3917 | 0.605 | 0.220 | 0.679 | 0.043 | 0.031 | 4196 | 0.578 | 0.171 | 0.492 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | Alcohol use | -0.061 | 0.022 | 3917 | 0.606 | 0.006 | 0.437 | 0.009 | 0.023 | 4196 | 0.578 | 0.705 | 0.906 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | Marijuana use | -0.019 | 0.044 | 3917 | 0.605 | 0.664 | 0.859 | 0.012 | 0.045 | 4196 | 0.578 | 0.790 | 1.000 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | Pregnancy complications | -0.053 | 0.020 | 3917 | 0.606 | 0.007 | 0.247 | -0.053 | 0.020 | 4196 | 0.578 | 0.008 | 0.139 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | Birth complications | -0.014 | 0.022 | 3917 | 0.605 | 0.518 | 0.884 | -0.018 | 0.021 | 4196 | 0.578 | 0.394 | 0.802 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | Unplanned pregnancy | 0.006 | 0.026 | 3917 | 0.486 | 0.814 | 0.979 | 0.001 | 0.026 | 4196 | 0.488 | 0.983 | 1.000 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | C-Section | -0.055 | 0.024 | 3917 | 0.486 | 0.021 | 0.157 | -0.006 | 0.023 | 4196 | 0.488 | 0.795 | 0.932 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | Gestational Age | 0.033 | 0.033 | 3917 | 0.486 | 0.312 | 0.513 | 0.059 | 0.031 | 4196 | 0.489 | 0.056 | 0.173 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | Birth weight | 0.075 | 0.032 | 3917 | 0.486 | 0.018 | 0.056 | 0.090 | 0.031 | 4196 | 0.489 | 0.004 | 0.043 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | Tobacco use | 0.060 | 0.036 | 3917 | 0.486 | 0.094 | 0.497 | 0.015 | 0.035 | 4196 | 0.489 | 0.662 | 0.887 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | Alcohol use | 0.007 | 0.026 | 3917 | 0.486 | 0.794 | 0.979 | -0.011 | 0.025 | 4196 | 0.488 | 0.675 | 0.906 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | Marijuana use | 0.069 | 0.051 | 3917 | 0.486 | 0.171 | 0.774 | 0.050 | 0.050 | 4196 | 0.489 | 0.319 | 0.921 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | Pregnancy complications | 0.024 | 0.023 | 3917 | 0.486 | 0.288 | 0.688 | 0.057 | 0.022 | 4196 | 0.489 | 0.011 | 0.139 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | Birth complications | -0.011 | 0.026 | 3917 | 0.486 | 0.668 | 0.884 | 0.055 | 0.024 | 4196 | 0.489 | 0.020 | 0.511 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | Unplanned pregnancy | -0.001 | 0.025 | 3917 | 0.475 | 0.973 | 0.979 | 0.015 | 0.025 | 4196 | 0.491 | 0.544 | 0.912 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | C-Section | 0.046 | 0.023 | 3917 | 0.476 | 0.042 | 0.204 | 0.038 | 0.022 | 4196 | 0.491 | 0.082 | 0.223 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | Gestational Age | 0.011 | 0.031 | 3917 | 0.475 | 0.715 | 0.792 | -0.011 | 0.030 | 4196 | 0.490 | 0.701 | 0.842 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | Birth weight | -0.082 | 0.030 | 3917 | 0.475 | 0.007 | 0.028 | 0.013 | 0.030 | 4196 | 0.491 | 0.674 | 0.818 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | Tobacco use | 0.017 | 0.034 | 3917 | 0.475 | 0.625 | 0.844 | -0.048 | 0.033 | 4196 | 0.491 | 0.150 | 0.492 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | Alcohol use | -0.001 | 0.025 | 3917 | 0.475 | 0.977 | 0.998 | 0.009 | 0.024 | 4196 | 0.491 | 0.722 | 0.906 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | Marijuana use | -0.044 | 0.049 | 3917 | 0.475 | 0.361 | 0.859 | -0.053 | 0.048 | 4196 | 0.491 | 0.267 | 0.921 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | Pregnancy complications | -0.002 | 0.022 | 3917 | 0.475 | 0.911 | 0.972 | -0.004 | 0.022 | 4196 | 0.491 | 0.839 | 0.938 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | Birth complications | -0.022 | 0.025 | 3917 | 0.475 | 0.362 | 0.884 | -0.016 | 0.023 | 4196 | 0.491 | 0.496 | 0.839 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | Unplanned pregnancy | -0.033 | 0.035 | 3917 | 0.098 | 0.336 | 0.979 | 0.056 | 0.034 | 4196 | 0.091 | 0.103 | 0.846 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | C-Section | 0.054 | 0.031 | 3917 | 0.099 | 0.086 | 0.248 | 0.076 | 0.030 | 4196 | 0.092 | 0.012 | 0.058 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | Gestational Age | 0.080 | 0.043 | 3917 | 0.100 | 0.064 | 0.183 | 0.058 | 0.041 | 4196 | 0.091 | 0.158 | 0.358 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | Birth weight | 0.161 | 0.042 | 3917 | 0.101 | 0.000 | 0.002 | 0.160 | 0.041 | 4196 | 0.094 | 0.000 | 0.008 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | Tobacco use | 0.128 | 0.048 | 3917 | 0.099 | 0.007 | 0.194 | 0.049 | 0.046 | 4196 | 0.091 | 0.286 | 0.637 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | Alcohol use | 0.025 | 0.034 | 3917 | 0.098 | 0.467 | 0.964 | 0.043 | 0.034 | 4196 | 0.091 | 0.198 | 0.718 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | Marijuana use | 0.063 | 0.067 | 3917 | 0.098 | 0.350 | 0.859 | 0.056 | 0.067 | 4196 | 0.091 | 0.405 | 0.993 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | Pregnancy complications | 0.049 | 0.030 | 3917 | 0.099 | 0.108 | 0.367 | -0.005 | 0.030 | 4196 | 0.090 | 0.864 | 0.938 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | Birth complications | 0.073 | 0.034 | 3917 | 0.099 | 0.032 | 0.440 | -0.037 | 0.032 | 4196 | 0.091 | 0.249 | 0.802 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | Unplanned pregnancy | -0.047 | 0.034 | 3917 | 0.156 | 0.165 | 0.979 | 0.008 | 0.033 | 4196 | 0.163 | 0.801 | 0.964 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | C-Section | 0.035 | 0.030 | 3917 | 0.156 | 0.246 | 0.491 | 0.035 | 0.029 | 4196 | 0.164 | 0.228 | 0.485 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | Gestational Age | 0.031 | 0.042 | 3917 | 0.156 | 0.464 | 0.606 | -0.029 | 0.039 | 4196 | 0.164 | 0.454 | 0.670 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | Birth weight | 0.088 | 0.041 | 3917 | 0.157 | 0.030 | 0.082 | 0.085 | 0.040 | 4196 | 0.164 | 0.033 | 0.179 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | Tobacco use | 0.044 | 0.046 | 3917 | 0.156 | 0.342 | 0.724 | 0.006 | 0.044 | 4196 | 0.163 | 0.888 | 0.928 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | Alcohol use | -0.034 | 0.033 | 3917 | 0.156 | 0.307 | 0.896 | -0.008 | 0.032 | 4196 | 0.164 | 0.798 | 0.936 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | Marijuana use | 0.040 | 0.065 | 3917 | 0.156 | 0.534 | 0.859 | 0.011 | 0.064 | 4196 | 0.163 | 0.868 | 1.000 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | Pregnancy complications | 0.055 | 0.029 | 3917 | 0.157 | 0.062 | 0.322 | -0.041 | 0.029 | 4196 | 0.164 | 0.150 | 0.392 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | Birth complications | 0.006 | 0.033 | 3917 | 0.156 | 0.855 | 0.969 | 0.017 | 0.030 | 4196 | 0.164 | 0.587 | 0.876 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | Unplanned pregnancy | 0.020 | 0.032 | 3917 | 0.187 | 0.528 | 0.979 | 0.055 | 0.031 | 4196 | 0.180 | 0.078 | 0.846 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | C-Section | -0.049 | 0.029 | 3917 | 0.188 | 0.090 | 0.248 | -0.034 | 0.027 | 4196 | 0.180 | 0.216 | 0.473 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | Gestational Age | -0.085 | 0.040 | 3917 | 0.189 | 0.034 | 0.111 | -0.035 | 0.037 | 4196 | 0.180 | 0.351 | 0.581 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | Birth weight | -0.016 | 0.038 | 3917 | 0.188 | 0.679 | 0.796 | -0.006 | 0.038 | 4196 | 0.179 | 0.865 | 0.948 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | Tobacco use | 0.117 | 0.044 | 3917 | 0.188 | 0.007 | 0.194 | -0.006 | 0.042 | 4196 | 0.179 | 0.884 | 0.928 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | Alcohol use | 0.009 | 0.031 | 3917 | 0.188 | 0.781 | 0.979 | -0.001 | 0.031 | 4196 | 0.179 | 0.973 | 0.973 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | Marijuana use | 0.023 | 0.062 | 3917 | 0.187 | 0.704 | 0.859 | 0.020 | 0.060 | 4196 | 0.179 | 0.744 | 1.000 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | Pregnancy complications | -0.066 | 0.028 | 3917 | 0.189 | 0.017 | 0.249 | -0.002 | 0.027 | 4196 | 0.179 | 0.947 | 0.962 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | Birth complications | -0.002 | 0.031 | 3917 | 0.187 | 0.942 | 0.970 | -0.036 | 0.029 | 4196 | 0.180 | 0.216 | 0.792 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | Unplanned pregnancy | -0.024 | 0.032 | 3917 | 0.178 | 0.451 | 0.979 | -0.001 | 0.032 | 4196 | 0.158 | 0.965 | 1.000 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | C-Section | -0.001 | 0.029 | 3917 | 0.178 | 0.976 | 0.996 | -0.022 | 0.028 | 4196 | 0.158 | 0.430 | 0.749 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | Gestational Age | -0.011 | 0.040 | 3917 | 0.178 | 0.780 | 0.816 | -0.063 | 0.038 | 4196 | 0.158 | 0.097 | 0.255 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | Birth weight | -0.002 | 0.039 | 3917 | 0.178 | 0.966 | 0.966 | -0.069 | 0.039 | 4196 | 0.158 | 0.074 | 0.252 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | Tobacco use | -0.003 | 0.044 | 3917 | 0.178 | 0.952 | 0.985 | 0.018 | 0.043 | 4196 | 0.158 | 0.672 | 0.887 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | Alcohol use | -0.004 | 0.032 | 3917 | 0.178 | 0.898 | 0.998 | 0.001 | 0.032 | 4196 | 0.158 | 0.970 | 0.973 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | Marijuana use | -0.033 | 0.062 | 3917 | 0.178 | 0.598 | 0.859 | 0.003 | 0.063 | 4196 | 0.158 | 0.966 | 1.000 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | Pregnancy complications | 0.022 | 0.028 | 3917 | 0.178 | 0.435 | 0.804 | -0.070 | 0.028 | 4196 | 0.158 | 0.012 | 0.139 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | Birth complications | 0.012 | 0.031 | 3917 | 0.178 | 0.713 | 0.884 | 0.048 | 0.030 | 4196 | 0.159 | 0.103 | 0.698 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | Unplanned pregnancy | -0.052 | 0.032 | 3917 | 0.249 | 0.102 | 0.970 | 0.008 | 0.032 | 4196 | 0.228 | 0.806 | 0.962 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | C-Section | -0.075 | 0.029 | 3917 | 0.250 | 0.009 | 0.104 | -0.068 | 0.028 | 4196 | 0.230 | 0.015 | 0.104 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | Gestational Age | -0.040 | 0.040 | 3917 | 0.249 | 0.320 | 0.495 | -0.066 | 0.038 | 4196 | 0.230 | 0.085 | 0.261 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | Birth weight | -0.082 | 0.039 | 3917 | 0.250 | 0.033 | 0.119 | -0.073 | 0.039 | 4196 | 0.230 | 0.059 | 0.250 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | Tobacco use | -0.033 | 0.044 | 3917 | 0.249 | 0.445 | 0.919 | 0.005 | 0.043 | 4196 | 0.228 | 0.913 | 0.970 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | Alcohol use | -0.034 | 0.031 | 3917 | 0.249 | 0.282 | 0.600 | 0.023 | 0.031 | 4196 | 0.229 | 0.465 | 0.903 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | Marijuana use | -0.047 | 0.062 | 3917 | 0.249 | 0.450 | 0.927 | -0.043 | 0.062 | 4196 | 0.229 | 0.488 | 0.737 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | Pregnancy complications | 0.001 | 0.028 | 3917 | 0.249 | 0.968 | 0.993 | 0.020 | 0.028 | 4196 | 0.228 | 0.470 | 0.921 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | Birth complications | -0.001 | 0.031 | 3917 | 0.249 | 0.970 | 0.985 | 0.038 | 0.030 | 4196 | 0.228 | 0.200 | 0.814 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | Unplanned pregnancy | 0.018 | 0.032 | 3917 | 0.264 | 0.577 | 0.970 | 0.043 | 0.032 | 4196 | 0.228 | 0.177 | 0.923 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | C-Section | -0.025 | 0.029 | 3917 | 0.264 | 0.391 | 0.664 | 0.054 | 0.028 | 4196 | 0.228 | 0.056 | 0.258 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | Gestational Age | 0.018 | 0.040 | 3917 | 0.264 | 0.642 | 0.753 | 0.081 | 0.038 | 4196 | 0.228 | 0.035 | 0.148 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | Birth weight | -0.009 | 0.038 | 3917 | 0.264 | 0.819 | 0.898 | 0.036 | 0.039 | 4196 | 0.228 | 0.357 | 0.578 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | Tobacco use | -0.038 | 0.043 | 3917 | 0.264 | 0.385 | 0.919 | 0.074 | 0.043 | 4196 | 0.228 | 0.087 | 0.396 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | Alcohol use | 0.058 | 0.031 | 3917 | 0.265 | 0.062 | 0.382 | 0.010 | 0.032 | 4196 | 0.228 | 0.741 | 0.971 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | Marijuana use | 0.080 | 0.061 | 3917 | 0.265 | 0.190 | 0.927 | -0.068 | 0.062 | 4196 | 0.228 | 0.278 | 0.737 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | Pregnancy complications | 0.052 | 0.028 | 3917 | 0.265 | 0.061 | 0.581 | 0.001 | 0.028 | 4196 | 0.228 | 0.984 | 0.990 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | Birth complications | 0.002 | 0.031 | 3917 | 0.264 | 0.959 | 0.985 | -0.013 | 0.030 | 4196 | 0.228 | 0.654 | 0.972 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | Unplanned pregnancy | -0.010 | 0.029 | 3917 | 0.416 | 0.724 | 0.970 | -0.024 | 0.029 | 4196 | 0.380 | 0.416 | 0.923 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | C-Section | 0.047 | 0.026 | 3917 | 0.417 | 0.066 | 0.320 | 0.042 | 0.025 | 4196 | 0.381 | 0.102 | 0.325 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | Gestational Age | 0.057 | 0.036 | 3917 | 0.417 | 0.109 | 0.255 | 0.060 | 0.035 | 4196 | 0.381 | 0.082 | 0.261 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | Birth weight | 0.056 | 0.034 | 3917 | 0.417 | 0.101 | 0.275 | 0.040 | 0.035 | 4196 | 0.380 | 0.253 | 0.502 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | Tobacco use | 0.075 | 0.039 | 3917 | 0.417 | 0.053 | 0.712 | -0.089 | 0.039 | 4196 | 0.381 | 0.022 | 0.300 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | Alcohol use | 0.064 | 0.028 | 3917 | 0.417 | 0.022 | 0.297 | -0.067 | 0.028 | 4196 | 0.381 | 0.019 | 0.323 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | Marijuana use | 0.031 | 0.055 | 3917 | 0.416 | 0.574 | 0.929 | -0.065 | 0.056 | 4196 | 0.380 | 0.248 | 0.733 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | Pregnancy complications | 0.025 | 0.025 | 3917 | 0.416 | 0.314 | 0.665 | 0.009 | 0.025 | 4196 | 0.380 | 0.715 | 0.921 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | Birth complications | -0.022 | 0.028 | 3917 | 0.416 | 0.428 | 0.800 | -0.006 | 0.027 | 4196 | 0.380 | 0.828 | 0.972 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | Unplanned pregnancy | 0.019 | 0.032 | 3917 | 0.234 | 0.554 | 0.970 | 0.029 | 0.032 | 4196 | 0.190 | 0.375 | 0.923 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | C-Section | 0.011 | 0.029 | 3917 | 0.234 | 0.708 | 0.875 | -0.035 | 0.028 | 4196 | 0.190 | 0.215 | 0.406 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | Gestational Age | -0.015 | 0.040 | 3917 | 0.233 | 0.715 | 0.804 | 0.042 | 0.039 | 4196 | 0.191 | 0.282 | 0.538 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | Birth weight | 0.091 | 0.038 | 3917 | 0.235 | 0.018 | 0.076 | 0.086 | 0.039 | 4196 | 0.192 | 0.028 | 0.162 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | Tobacco use | 0.016 | 0.044 | 3917 | 0.234 | 0.712 | 0.973 | -0.028 | 0.044 | 4196 | 0.190 | 0.526 | 0.825 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | Alcohol use | -0.017 | 0.031 | 3917 | 0.234 | 0.580 | 0.846 | -0.018 | 0.032 | 4196 | 0.190 | 0.577 | 0.951 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | Marijuana use | 0.040 | 0.062 | 3917 | 0.234 | 0.514 | 0.927 | 0.033 | 0.063 | 4196 | 0.190 | 0.603 | 0.795 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | Pregnancy complications | -0.052 | 0.028 | 3917 | 0.234 | 0.061 | 0.581 | -0.062 | 0.028 | 4196 | 0.191 | 0.027 | 0.466 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | Birth complications | 0.002 | 0.031 | 3917 | 0.234 | 0.949 | 0.985 | -0.030 | 0.030 | 4196 | 0.190 | 0.313 | 0.972 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | Unplanned pregnancy | 0.010 | 0.035 | 3917 | 0.090 | 0.788 | 0.970 | -0.011 | 0.035 | 4196 | 0.088 | 0.750 | 0.962 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | C-Section | 0.030 | 0.032 | 3917 | 0.090 | 0.344 | 0.612 | 0.024 | 0.031 | 4196 | 0.089 | 0.436 | 0.674 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | Gestational Age | 0.029 | 0.044 | 3917 | 0.090 | 0.517 | 0.675 | -0.017 | 0.042 | 4196 | 0.088 | 0.688 | 0.767 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | Birth weight | -0.033 | 0.043 | 3917 | 0.090 | 0.435 | 0.709 | 0.041 | 0.042 | 4196 | 0.089 | 0.337 | 0.573 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | Tobacco use | -0.074 | 0.049 | 3917 | 0.090 | 0.127 | 0.712 | -0.093 | 0.047 | 4196 | 0.089 | 0.048 | 0.359 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | Alcohol use | -0.056 | 0.035 | 3917 | 0.090 | 0.110 | 0.469 | -0.013 | 0.034 | 4196 | 0.088 | 0.699 | 0.971 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | Marijuana use | 0.043 | 0.068 | 3917 | 0.090 | 0.531 | 0.927 | -0.056 | 0.068 | 4196 | 0.088 | 0.405 | 0.737 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | Pregnancy complications | -0.033 | 0.031 | 3917 | 0.090 | 0.283 | 0.665 | 0.014 | 0.030 | 4196 | 0.088 | 0.644 | 0.921 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | Birth complications | -0.018 | 0.035 | 3917 | 0.090 | 0.613 | 0.823 | -0.013 | 0.032 | 4196 | 0.088 | 0.680 | 0.972 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | Unplanned pregnancy | -0.009 | 0.027 | 3917 | 0.480 | 0.738 | 0.970 | -0.041 | 0.026 | 4196 | 0.489 | 0.113 | 0.923 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | C-Section | -0.005 | 0.024 | 3917 | 0.480 | 0.829 | 0.895 | 0.017 | 0.023 | 4196 | 0.489 | 0.468 | 0.704 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | Gestational Age | -0.060 | 0.033 | 3917 | 0.480 | 0.074 | 0.220 | -0.010 | 0.031 | 4196 | 0.488 | 0.749 | 0.821 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | Birth weight | 0.027 | 0.032 | 3917 | 0.480 | 0.395 | 0.688 | 0.012 | 0.032 | 4196 | 0.489 | 0.692 | 0.759 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | Tobacco use | 0.016 | 0.036 | 3917 | 0.480 | 0.654 | 0.973 | -0.012 | 0.035 | 4196 | 0.488 | 0.742 | 0.916 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | Alcohol use | 0.045 | 0.026 | 3917 | 0.480 | 0.085 | 0.422 | 0.010 | 0.025 | 4196 | 0.489 | 0.693 | 0.971 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | Marijuana use | -0.013 | 0.051 | 3917 | 0.480 | 0.798 | 0.978 | -0.044 | 0.050 | 4196 | 0.489 | 0.383 | 0.737 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | Pregnancy complications | -0.028 | 0.023 | 3917 | 0.480 | 0.236 | 0.665 | 0.014 | 0.023 | 4196 | 0.489 | 0.537 | 0.921 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | Birth complications | -0.037 | 0.026 | 3917 | 0.480 | 0.157 | 0.800 | -0.029 | 0.024 | 4196 | 0.489 | 0.222 | 0.814 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | Unplanned pregnancy | -0.009 | 0.029 | 3917 | 0.407 | 0.754 | 0.970 | 0.027 | 0.029 | 4196 | 0.374 | 0.350 | 0.923 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | C-Section | -0.060 | 0.026 | 3917 | 0.408 | 0.020 | 0.149 | -0.051 | 0.025 | 4196 | 0.375 | 0.045 | 0.236 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | Gestational Age | -0.121 | 0.036 | 3917 | 0.409 | 0.001 | 0.012 | -0.037 | 0.035 | 4196 | 0.374 | 0.285 | 0.538 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | Birth weight | -0.110 | 0.035 | 3917 | 0.408 | 0.001 | 0.019 | -0.112 | 0.035 | 4196 | 0.376 | 0.001 | 0.031 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | Tobacco use | -0.050 | 0.039 | 3917 | 0.407 | 0.205 | 0.870 | 0.016 | 0.039 | 4196 | 0.374 | 0.683 | 0.904 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | Alcohol use | 0.038 | 0.028 | 3917 | 0.407 | 0.179 | 0.600 | 0.001 | 0.028 | 4196 | 0.374 | 0.960 | 0.993 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | Marijuana use | -0.107 | 0.055 | 3917 | 0.407 | 0.054 | 0.927 | 0.067 | 0.056 | 4196 | 0.374 | 0.229 | 0.733 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | Pregnancy complications | 0.037 | 0.025 | 3917 | 0.407 | 0.134 | 0.665 | 0.027 | 0.025 | 4196 | 0.374 | 0.285 | 0.921 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | Birth complications | -0.020 | 0.028 | 3917 | 0.407 | 0.485 | 0.800 | -0.036 | 0.027 | 4196 | 0.374 | 0.180 | 0.814 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | Unplanned pregnancy | 0.042 | 0.026 | 3917 | 0.497 | 0.112 | 0.970 | 0.018 | 0.026 | 4196 | 0.484 | 0.503 | 0.923 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | C-Section | -0.036 | 0.024 | 3917 | 0.497 | 0.132 | 0.374 | 0.012 | 0.023 | 4196 | 0.484 | 0.613 | 0.784 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | Gestational Age | -0.003 | 0.033 | 3917 | 0.496 | 0.929 | 0.934 | -0.020 | 0.031 | 4196 | 0.484 | 0.524 | 0.636 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | Birth weight | -0.047 | 0.032 | 3917 | 0.497 | 0.137 | 0.332 | -0.034 | 0.032 | 4196 | 0.484 | 0.287 | 0.502 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | Tobacco use | 0.004 | 0.036 | 3917 | 0.496 | 0.901 | 0.979 | -0.013 | 0.035 | 4196 | 0.484 | 0.718 | 0.904 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | Alcohol use | 0.052 | 0.026 | 3917 | 0.497 | 0.046 | 0.348 | 0.027 | 0.026 | 4196 | 0.484 | 0.285 | 0.889 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | Marijuana use | 0.052 | 0.051 | 3917 | 0.496 | 0.304 | 0.927 | 0.010 | 0.051 | 4196 | 0.484 | 0.852 | 0.929 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | Pregnancy complications | -0.023 | 0.023 | 3917 | 0.496 | 0.321 | 0.665 | 0.024 | 0.023 | 4196 | 0.484 | 0.295 | 0.921 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | Birth complications | -0.043 | 0.026 | 3917 | 0.497 | 0.095 | 0.800 | -0.006 | 0.024 | 4196 | 0.484 | 0.818 | 0.972 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | Unplanned pregnancy | 0.024 | 0.031 | 3917 | 0.318 | 0.429 | 0.970 | 0.027 | 0.030 | 4196 | 0.325 | 0.366 | 0.923 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | C-Section | 0.039 | 0.028 | 3917 | 0.319 | 0.158 | 0.397 | -0.014 | 0.026 | 4196 | 0.325 | 0.605 | 0.784 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | Gestational Age | -0.060 | 0.038 | 3917 | 0.319 | 0.116 | 0.255 | 0.001 | 0.036 | 4196 | 0.325 | 0.975 | 0.977 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | Birth weight | 0.046 | 0.037 | 3917 | 0.318 | 0.207 | 0.438 | -0.039 | 0.036 | 4196 | 0.326 | 0.275 | 0.502 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | Tobacco use | 0.009 | 0.042 | 3917 | 0.318 | 0.833 | 0.979 | 0.072 | 0.040 | 4196 | 0.326 | 0.074 | 0.396 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | Alcohol use | -0.054 | 0.030 | 3917 | 0.319 | 0.069 | 0.390 | 0.023 | 0.029 | 4196 | 0.325 | 0.422 | 0.889 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | Marijuana use | 0.002 | 0.059 | 3917 | 0.318 | 0.978 | 0.982 | 0.087 | 0.058 | 4196 | 0.326 | 0.132 | 0.601 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | Pregnancy complications | -0.006 | 0.027 | 3917 | 0.318 | 0.836 | 0.993 | 0.002 | 0.026 | 4196 | 0.325 | 0.950 | 0.985 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | Birth complications | 0.023 | 0.030 | 3917 | 0.318 | 0.442 | 0.800 | -0.013 | 0.027 | 4196 | 0.325 | 0.633 | 0.972 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | Unplanned pregnancy | -0.002 | 0.029 | 3917 | 0.402 | 0.954 | 0.970 | 0.041 | 0.029 | 4196 | 0.354 | 0.157 | 0.923 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | C-Section | 0.003 | 0.026 | 3917 | 0.402 | 0.919 | 0.922 | -0.035 | 0.025 | 4196 | 0.354 | 0.171 | 0.353 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | Gestational Age | -0.056 | 0.036 | 3917 | 0.402 | 0.120 | 0.255 | 0.098 | 0.035 | 4196 | 0.355 | 0.005 | 0.058 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | Birth weight | 0.096 | 0.035 | 3917 | 0.403 | 0.006 | 0.041 | 0.037 | 0.035 | 4196 | 0.354 | 0.288 | 0.502 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | Tobacco use | 0.035 | 0.039 | 3917 | 0.402 | 0.375 | 0.919 | 0.062 | 0.039 | 4196 | 0.354 | 0.114 | 0.432 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | Alcohol use | 0.058 | 0.028 | 3917 | 0.403 | 0.039 | 0.348 | 0.057 | 0.028 | 4196 | 0.354 | 0.046 | 0.449 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | Marijuana use | 0.095 | 0.055 | 3917 | 0.403 | 0.086 | 0.927 | 0.072 | 0.056 | 4196 | 0.354 | 0.199 | 0.733 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | Pregnancy complications | 0.015 | 0.025 | 3917 | 0.402 | 0.541 | 0.864 | -0.001 | 0.025 | 4196 | 0.354 | 0.956 | 0.985 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | Birth complications | -0.017 | 0.028 | 3917 | 0.402 | 0.551 | 0.823 | -0.008 | 0.027 | 4196 | 0.354 | 0.776 | 0.972 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | Unplanned pregnancy | 0.027 | 0.025 | 3917 | 0.518 | 0.282 | 0.970 | -0.010 | 0.024 | 4196 | 0.542 | 0.664 | 0.923 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | C-Section | -0.079 | 0.023 | 3917 | 0.520 | 0.000 | 0.017 | -0.026 | 0.021 | 4196 | 0.543 | 0.205 | 0.397 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | Gestational Age | -0.005 | 0.031 | 3917 | 0.518 | 0.877 | 0.923 | -0.056 | 0.028 | 4196 | 0.543 | 0.050 | 0.189 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | Birth weight | -0.123 | 0.030 | 3917 | 0.520 | 0.000 | 0.002 | -0.059 | 0.029 | 4196 | 0.543 | 0.039 | 0.201 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | Tobacco use | 0.010 | 0.034 | 3917 | 0.518 | 0.777 | 0.973 | 0.013 | 0.032 | 4196 | 0.542 | 0.690 | 0.904 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | Alcohol use | 0.005 | 0.025 | 3917 | 0.518 | 0.854 | 0.952 | -0.018 | 0.023 | 4196 | 0.542 | 0.441 | 0.889 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | Marijuana use | 0.053 | 0.048 | 3917 | 0.518 | 0.274 | 0.927 | 0.025 | 0.046 | 4196 | 0.542 | 0.582 | 0.795 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | Pregnancy complications | -0.030 | 0.022 | 3917 | 0.518 | 0.176 | 0.665 | -0.017 | 0.020 | 4196 | 0.542 | 0.413 | 0.921 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | Birth complications | 0.013 | 0.024 | 3917 | 0.518 | 0.587 | 0.823 | -0.030 | 0.022 | 4196 | 0.543 | 0.164 | 0.814 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | Unplanned pregnancy | -0.015 | 0.031 | 3917 | 0.255 | 0.642 | 0.970 | 0.019 | 0.030 | 4196 | 0.254 | 0.529 | 0.923 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | C-Section | -0.048 | 0.028 | 3917 | 0.255 | 0.089 | 0.347 | -0.040 | 0.027 | 4196 | 0.253 | 0.140 | 0.325 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | Gestational Age | -0.130 | 0.039 | 3917 | 0.255 | 0.001 | 0.012 | 0.008 | 0.037 | 4196 | 0.254 | 0.834 | 0.900 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | Birth weight | 0.027 | 0.038 | 3917 | 0.255 | 0.466 | 0.709 | 0.004 | 0.037 | 4196 | 0.254 | 0.923 | 0.937 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | Tobacco use | 0.033 | 0.043 | 3917 | 0.255 | 0.441 | 0.919 | -0.025 | 0.041 | 4196 | 0.254 | 0.549 | 0.829 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | Alcohol use | -0.019 | 0.030 | 3917 | 0.255 | 0.536 | 0.829 | -0.009 | 0.030 | 4196 | 0.254 | 0.755 | 0.971 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | Marijuana use | 0.045 | 0.060 | 3917 | 0.255 | 0.454 | 0.927 | 0.046 | 0.059 | 4196 | 0.254 | 0.434 | 0.737 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | Pregnancy complications | -0.034 | 0.027 | 3917 | 0.255 | 0.206 | 0.665 | -0.012 | 0.026 | 4196 | 0.253 | 0.655 | 0.921 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | Birth complications | 0.004 | 0.030 | 3917 | 0.255 | 0.904 | 0.985 | -0.009 | 0.028 | 4196 | 0.253 | 0.759 | 0.972 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | Unplanned pregnancy | -0.013 | 0.028 | 3917 | 0.416 | 0.637 | 0.970 | -0.043 | 0.026 | 4196 | 0.461 | 0.099 | 0.923 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | C-Section | 0.048 | 0.025 | 3917 | 0.417 | 0.055 | 0.288 | 0.013 | 0.023 | 4196 | 0.461 | 0.562 | 0.784 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | Gestational Age | 0.089 | 0.035 | 3917 | 0.418 | 0.010 | 0.075 | -0.028 | 0.031 | 4196 | 0.461 | 0.379 | 0.538 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | Birth weight | -0.007 | 0.033 | 3917 | 0.416 | 0.841 | 0.901 | 0.043 | 0.032 | 4196 | 0.461 | 0.182 | 0.413 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | Tobacco use | 0.027 | 0.038 | 3917 | 0.416 | 0.481 | 0.919 | -0.024 | 0.035 | 4196 | 0.461 | 0.493 | 0.821 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | Alcohol use | 0.000 | 0.027 | 3917 | 0.416 | 0.995 | 0.995 | -0.007 | 0.026 | 4196 | 0.461 | 0.788 | 0.992 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | Marijuana use | 0.039 | 0.053 | 3917 | 0.416 | 0.470 | 0.927 | -0.047 | 0.051 | 4196 | 0.461 | 0.351 | 0.737 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | Pregnancy complications | -0.006 | 0.024 | 3917 | 0.416 | 0.795 | 0.965 | -0.013 | 0.023 | 4196 | 0.461 | 0.564 | 0.921 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | Birth complications | 0.044 | 0.027 | 3917 | 0.417 | 0.105 | 0.800 | -0.039 | 0.024 | 4196 | 0.462 | 0.110 | 0.814 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | Unplanned pregnancy | 0.008 | 0.025 | 3917 | 0.536 | 0.736 | 0.970 | 0.014 | 0.025 | 4196 | 0.509 | 0.576 | 0.923 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | C-Section | -0.057 | 0.022 | 3917 | 0.537 | 0.011 | 0.111 | 0.020 | 0.022 | 4196 | 0.509 | 0.376 | 0.608 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | Gestational Age | -0.107 | 0.031 | 3917 | 0.538 | 0.001 | 0.012 | -0.030 | 0.030 | 4196 | 0.510 | 0.325 | 0.538 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | Birth weight | -0.095 | 0.030 | 3917 | 0.538 | 0.002 | 0.019 | -0.056 | 0.031 | 4196 | 0.510 | 0.070 | 0.250 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | Tobacco use | 0.043 | 0.034 | 3917 | 0.536 | 0.201 | 0.870 | 0.009 | 0.034 | 4196 | 0.509 | 0.781 | 0.916 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | Alcohol use | 0.037 | 0.024 | 3917 | 0.537 | 0.127 | 0.478 | 0.035 | 0.025 | 4196 | 0.510 | 0.159 | 0.809 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | Marijuana use | -0.009 | 0.048 | 3917 | 0.536 | 0.845 | 0.978 | -0.039 | 0.049 | 4196 | 0.509 | 0.431 | 0.737 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | Pregnancy complications | -0.003 | 0.022 | 3917 | 0.536 | 0.903 | 0.993 | 0.005 | 0.022 | 4196 | 0.509 | 0.834 | 0.945 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | Birth complications | -0.024 | 0.024 | 3917 | 0.536 | 0.319 | 0.800 | 0.006 | 0.023 | 4196 | 0.509 | 0.795 | 0.972 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | Unplanned pregnancy | -0.026 | 0.033 | 3917 | 0.202 | 0.427 | 0.970 | -0.042 | 0.032 | 4196 | 0.220 | 0.186 | 0.923 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | C-Section | -0.028 | 0.030 | 3917 | 0.202 | 0.351 | 0.612 | 0.015 | 0.028 | 4196 | 0.220 | 0.593 | 0.784 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | Gestational Age | 0.012 | 0.041 | 3917 | 0.202 | 0.779 | 0.855 | 0.015 | 0.038 | 4196 | 0.220 | 0.688 | 0.767 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | Birth weight | 0.026 | 0.040 | 3917 | 0.202 | 0.519 | 0.712 | 0.012 | 0.039 | 4196 | 0.220 | 0.757 | 0.813 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | Tobacco use | -0.095 | 0.045 | 3917 | 0.202 | 0.034 | 0.712 | -0.001 | 0.043 | 4196 | 0.220 | 0.985 | 0.985 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | Alcohol use | -0.020 | 0.032 | 3917 | 0.202 | 0.526 | 0.829 | 0.013 | 0.031 | 4196 | 0.220 | 0.689 | 0.971 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | Marijuana use | -0.124 | 0.064 | 3917 | 0.202 | 0.052 | 0.927 | -0.103 | 0.062 | 4196 | 0.220 | 0.095 | 0.538 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | Pregnancy complications | 0.049 | 0.029 | 3917 | 0.202 | 0.085 | 0.581 | 0.035 | 0.028 | 4196 | 0.220 | 0.209 | 0.886 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | Birth complications | -0.005 | 0.032 | 3917 | 0.202 | 0.881 | 0.985 | -0.003 | 0.029 | 4196 | 0.220 | 0.913 | 0.972 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | Unplanned pregnancy | -0.006 | 0.030 | 3917 | 0.353 | 0.840 | 0.970 | -0.022 | 0.030 | 4196 | 0.320 | 0.472 | 0.923 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | C-Section | 0.009 | 0.027 | 3917 | 0.353 | 0.728 | 0.878 | -0.001 | 0.026 | 4196 | 0.320 | 0.972 | 0.987 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | Gestational Age | -0.004 | 0.037 | 3917 | 0.353 | 0.911 | 0.934 | 0.025 | 0.036 | 4196 | 0.320 | 0.483 | 0.608 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | Birth weight | -0.024 | 0.036 | 3917 | 0.353 | 0.505 | 0.712 | -0.024 | 0.037 | 4196 | 0.320 | 0.514 | 0.672 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | Tobacco use | 0.039 | 0.041 | 3917 | 0.353 | 0.337 | 0.919 | -0.037 | 0.041 | 4196 | 0.320 | 0.358 | 0.716 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | Alcohol use | 0.023 | 0.029 | 3917 | 0.353 | 0.432 | 0.753 | -0.099 | 0.030 | 4196 | 0.322 | 0.001 | 0.055 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | Marijuana use | -0.035 | 0.057 | 3917 | 0.353 | 0.537 | 0.927 | -0.072 | 0.059 | 4196 | 0.321 | 0.221 | 0.733 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | Pregnancy complications | -0.001 | 0.026 | 3917 | 0.353 | 0.968 | 0.993 | -0.012 | 0.026 | 4196 | 0.320 | 0.648 | 0.921 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | Birth complications | -0.023 | 0.029 | 3917 | 0.354 | 0.435 | 0.800 | 0.040 | 0.028 | 4196 | 0.321 | 0.151 | 0.814 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | Unplanned pregnancy | -0.048 | 0.032 | 3917 | 0.273 | 0.134 | 0.970 | 0.008 | 0.032 | 4196 | 0.247 | 0.807 | 0.962 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | C-Section | -0.019 | 0.029 | 3917 | 0.273 | 0.506 | 0.758 | 0.007 | 0.028 | 4196 | 0.247 | 0.815 | 0.923 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | Gestational Age | -0.015 | 0.040 | 3917 | 0.273 | 0.715 | 0.804 | -0.038 | 0.038 | 4196 | 0.247 | 0.311 | 0.538 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | Birth weight | -0.021 | 0.038 | 3917 | 0.273 | 0.582 | 0.719 | 0.024 | 0.038 | 4196 | 0.247 | 0.537 | 0.679 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | Tobacco use | 0.025 | 0.044 | 3917 | 0.273 | 0.570 | 0.973 | 0.092 | 0.043 | 4196 | 0.248 | 0.032 | 0.357 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | Alcohol use | -0.033 | 0.031 | 3917 | 0.273 | 0.287 | 0.600 | 0.029 | 0.031 | 4196 | 0.247 | 0.350 | 0.889 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | Marijuana use | -0.030 | 0.061 | 3917 | 0.273 | 0.623 | 0.931 | 0.077 | 0.061 | 4196 | 0.247 | 0.207 | 0.733 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | Pregnancy complications | 0.005 | 0.028 | 3917 | 0.273 | 0.871 | 0.993 | -0.002 | 0.027 | 4196 | 0.247 | 0.956 | 0.985 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | Birth complications | 0.022 | 0.031 | 3917 | 0.273 | 0.470 | 0.800 | 0.019 | 0.029 | 4196 | 0.247 | 0.522 | 0.972 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | Unplanned pregnancy | 0.043 | 0.029 | 3917 | 0.383 | 0.141 | 0.970 | -0.015 | 0.028 | 4196 | 0.404 | 0.592 | 0.923 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | C-Section | 0.038 | 0.026 | 3917 | 0.384 | 0.143 | 0.375 | 0.066 | 0.025 | 4196 | 0.405 | 0.007 | 0.078 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | Gestational Age | 0.094 | 0.036 | 3917 | 0.385 | 0.010 | 0.075 | -0.039 | 0.034 | 4196 | 0.404 | 0.246 | 0.522 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | Birth weight | -0.025 | 0.035 | 3917 | 0.383 | 0.469 | 0.709 | 0.057 | 0.034 | 4196 | 0.405 | 0.095 | 0.283 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | Tobacco use | -0.013 | 0.040 | 3917 | 0.383 | 0.752 | 0.973 | 0.014 | 0.038 | 4196 | 0.404 | 0.716 | 0.904 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | Alcohol use | -0.031 | 0.029 | 3917 | 0.384 | 0.281 | 0.600 | 0.015 | 0.028 | 4196 | 0.404 | 0.589 | 0.951 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | Marijuana use | -0.012 | 0.056 | 3917 | 0.383 | 0.831 | 0.978 | -0.027 | 0.054 | 4196 | 0.404 | 0.622 | 0.797 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | Pregnancy complications | 0.069 | 0.025 | 3917 | 0.385 | 0.006 | 0.428 | 0.040 | 0.024 | 4196 | 0.405 | 0.102 | 0.770 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | Birth complications | 0.020 | 0.028 | 3917 | 0.383 | 0.483 | 0.800 | 0.037 | 0.026 | 4196 | 0.405 | 0.154 | 0.814 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | Unplanned pregnancy | -0.028 | 0.033 | 3917 | 0.226 | 0.390 | 0.970 | -0.002 | 0.031 | 4196 | 0.260 | 0.962 | 0.962 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | C-Section | -0.007 | 0.029 | 3917 | 0.226 | 0.805 | 0.889 | -0.012 | 0.028 | 4196 | 0.260 | 0.651 | 0.805 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | Gestational Age | -0.003 | 0.041 | 3917 | 0.226 | 0.934 | 0.934 | -0.093 | 0.038 | 4196 | 0.261 | 0.013 | 0.088 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | Birth weight | -0.015 | 0.039 | 3917 | 0.226 | 0.706 | 0.814 | -0.019 | 0.038 | 4196 | 0.260 | 0.613 | 0.730 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | Tobacco use | -0.012 | 0.045 | 3917 | 0.226 | 0.786 | 0.973 | 0.127 | 0.042 | 4196 | 0.262 | 0.003 | 0.091 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | Alcohol use | -0.065 | 0.032 | 3917 | 0.227 | 0.042 | 0.348 | 0.025 | 0.031 | 4196 | 0.260 | 0.416 | 0.889 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | Marijuana use | -0.037 | 0.063 | 3917 | 0.226 | 0.559 | 0.927 | 0.115 | 0.061 | 4196 | 0.261 | 0.060 | 0.538 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | Pregnancy complications | 0.041 | 0.028 | 3917 | 0.226 | 0.150 | 0.665 | -0.013 | 0.027 | 4196 | 0.260 | 0.628 | 0.921 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | Birth complications | 0.059 | 0.032 | 3917 | 0.227 | 0.063 | 0.800 | -0.034 | 0.029 | 4196 | 0.261 | 0.236 | 0.814 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | Unplanned pregnancy | -0.004 | 0.033 | 3917 | 0.129 | 0.894 | 0.970 | -0.019 | 0.033 | 4196 | 0.143 | 0.558 | 0.923 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | C-Section | -0.013 | 0.030 | 3917 | 0.129 | 0.659 | 0.845 | -0.050 | 0.029 | 4196 | 0.143 | 0.080 | 0.306 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | Gestational Age | -0.070 | 0.042 | 3917 | 0.129 | 0.091 | 0.242 | 0.087 | 0.039 | 4196 | 0.145 | 0.027 | 0.121 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | Birth weight | 0.074 | 0.040 | 3917 | 0.130 | 0.062 | 0.175 | 0.019 | 0.040 | 4196 | 0.143 | 0.627 | 0.730 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | Tobacco use | -0.008 | 0.045 | 3917 | 0.129 | 0.853 | 0.979 | -0.107 | 0.044 | 4196 | 0.144 | 0.015 | 0.289 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | Alcohol use | -0.040 | 0.032 | 3917 | 0.129 | 0.213 | 0.600 | -0.057 | 0.032 | 4196 | 0.144 | 0.075 | 0.509 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | Marijuana use | 0.070 | 0.064 | 3917 | 0.129 | 0.272 | 0.927 | 0.059 | 0.063 | 4196 | 0.144 | 0.350 | 0.737 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | Pregnancy complications | -0.060 | 0.029 | 3917 | 0.130 | 0.037 | 0.581 | -0.027 | 0.028 | 4196 | 0.143 | 0.342 | 0.921 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | Birth complications | -0.004 | 0.032 | 3917 | 0.129 | 0.906 | 0.985 | 0.000 | 0.030 | 4196 | 0.143 | 0.987 | 0.990 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | Unplanned pregnancy | 0.028 | 0.024 | 3917 | 0.564 | 0.242 | 0.970 | 0.006 | 0.025 | 4196 | 0.541 | 0.797 | 0.962 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | C-Section | 0.025 | 0.022 | 3917 | 0.564 | 0.253 | 0.522 | 0.033 | 0.022 | 4196 | 0.541 | 0.121 | 0.325 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | Gestational Age | -0.017 | 0.030 | 3917 | 0.564 | 0.584 | 0.709 | -0.040 | 0.029 | 4196 | 0.541 | 0.176 | 0.386 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | Birth weight | -0.019 | 0.029 | 3917 | 0.564 | 0.523 | 0.712 | 0.034 | 0.030 | 4196 | 0.541 | 0.259 | 0.502 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | Tobacco use | -0.036 | 0.033 | 3917 | 0.564 | 0.274 | 0.919 | -0.051 | 0.033 | 4196 | 0.541 | 0.127 | 0.433 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | Alcohol use | 0.026 | 0.024 | 3917 | 0.564 | 0.275 | 0.600 | -0.029 | 0.024 | 4196 | 0.541 | 0.229 | 0.889 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | Marijuana use | 0.040 | 0.047 | 3917 | 0.564 | 0.398 | 0.927 | -0.004 | 0.048 | 4196 | 0.541 | 0.933 | 0.961 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | Pregnancy complications | -0.012 | 0.021 | 3917 | 0.564 | 0.559 | 0.864 | -0.006 | 0.021 | 4196 | 0.541 | 0.779 | 0.921 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | Birth complications | -0.024 | 0.024 | 3917 | 0.564 | 0.304 | 0.800 | -0.012 | 0.023 | 4196 | 0.541 | 0.595 | 0.972 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | Unplanned pregnancy | -0.022 | 0.029 | 3917 | 0.366 | 0.456 | 0.970 | -0.021 | 0.030 | 4196 | 0.333 | 0.478 | 0.923 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | C-Section | -0.007 | 0.027 | 3917 | 0.366 | 0.781 | 0.889 | 0.033 | 0.026 | 4196 | 0.334 | 0.199 | 0.397 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | Gestational Age | 0.021 | 0.037 | 3917 | 0.366 | 0.574 | 0.709 | 0.024 | 0.036 | 4196 | 0.334 | 0.508 | 0.628 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | Birth weight | 0.000 | 0.036 | 3917 | 0.366 | 0.998 | 0.998 | 0.001 | 0.036 | 4196 | 0.333 | 0.974 | 0.974 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | Tobacco use | 0.030 | 0.040 | 3917 | 0.366 | 0.459 | 0.919 | -0.002 | 0.040 | 4196 | 0.333 | 0.961 | 0.985 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | Alcohol use | 0.054 | 0.029 | 3917 | 0.366 | 0.061 | 0.382 | 0.002 | 0.029 | 4196 | 0.333 | 0.956 | 0.993 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | Marijuana use | -0.046 | 0.057 | 3917 | 0.366 | 0.416 | 0.927 | -0.006 | 0.058 | 4196 | 0.333 | 0.921 | 0.961 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | Pregnancy complications | -0.023 | 0.026 | 3917 | 0.366 | 0.362 | 0.703 | 0.005 | 0.026 | 4196 | 0.333 | 0.861 | 0.959 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | Birth complications | 0.017 | 0.029 | 3917 | 0.366 | 0.551 | 0.823 | 0.006 | 0.027 | 4196 | 0.333 | 0.822 | 0.972 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | Unplanned pregnancy | -0.025 | 0.025 | 3917 | 0.533 | 0.329 | 0.970 | -0.033 | 0.026 | 4196 | 0.504 | 0.195 | 0.923 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | C-Section | 0.034 | 0.023 | 3917 | 0.533 | 0.132 | 0.374 | 0.049 | 0.022 | 4196 | 0.505 | 0.029 | 0.162 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | Gestational Age | 0.017 | 0.032 | 3917 | 0.533 | 0.583 | 0.709 | 0.024 | 0.031 | 4196 | 0.504 | 0.426 | 0.568 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | Birth weight | 0.023 | 0.031 | 3917 | 0.533 | 0.459 | 0.709 | 0.042 | 0.031 | 4196 | 0.504 | 0.181 | 0.413 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | Tobacco use | -0.003 | 0.035 | 3917 | 0.533 | 0.919 | 0.979 | -0.082 | 0.034 | 4196 | 0.504 | 0.017 | 0.289 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | Alcohol use | 0.002 | 0.025 | 3917 | 0.533 | 0.925 | 0.983 | -0.047 | 0.025 | 4196 | 0.504 | 0.062 | 0.509 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | Marijuana use | 0.006 | 0.049 | 3917 | 0.533 | 0.895 | 0.978 | -0.056 | 0.050 | 4196 | 0.504 | 0.259 | 0.733 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | Pregnancy complications | 0.025 | 0.022 | 3917 | 0.533 | 0.248 | 0.665 | 0.008 | 0.022 | 4196 | 0.504 | 0.732 | 0.921 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | Birth complications | -0.027 | 0.025 | 3917 | 0.533 | 0.281 | 0.800 | -0.012 | 0.024 | 4196 | 0.504 | 0.607 | 0.972 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | Unplanned pregnancy | 0.006 | 0.025 | 3917 | 0.533 | 0.819 | 0.970 | -0.003 | 0.025 | 4196 | 0.510 | 0.905 | 0.962 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | C-Section | 0.031 | 0.022 | 3917 | 0.533 | 0.168 | 0.408 | -0.030 | 0.022 | 4196 | 0.510 | 0.167 | 0.353 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | Gestational Age | 0.021 | 0.031 | 3917 | 0.533 | 0.495 | 0.673 | -0.030 | 0.030 | 4196 | 0.510 | 0.322 | 0.538 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | Birth weight | 0.002 | 0.030 | 3917 | 0.533 | 0.947 | 0.961 | 0.014 | 0.030 | 4196 | 0.510 | 0.642 | 0.730 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | Tobacco use | 0.003 | 0.034 | 3917 | 0.533 | 0.931 | 0.979 | 0.061 | 0.034 | 4196 | 0.510 | 0.070 | 0.396 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | Alcohol use | 0.011 | 0.024 | 3917 | 0.533 | 0.659 | 0.890 | 0.000 | 0.025 | 4196 | 0.510 | 0.985 | 0.993 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | Marijuana use | 0.045 | 0.048 | 3917 | 0.533 | 0.340 | 0.927 | 0.013 | 0.049 | 4196 | 0.510 | 0.795 | 0.908 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | Pregnancy complications | -0.023 | 0.021 | 3917 | 0.533 | 0.291 | 0.665 | -0.013 | 0.022 | 4196 | 0.510 | 0.549 | 0.921 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | Birth complications | 0.030 | 0.024 | 3917 | 0.533 | 0.220 | 0.800 | 0.016 | 0.023 | 4196 | 0.510 | 0.489 | 0.972 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | Unplanned pregnancy | 0.040 | 0.028 | 3917 | 0.423 | 0.157 | 0.970 | -0.008 | 0.027 | 4196 | 0.434 | 0.774 | 0.962 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | C-Section | -0.031 | 0.025 | 3917 | 0.423 | 0.222 | 0.503 | 0.036 | 0.024 | 4196 | 0.435 | 0.135 | 0.325 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | Gestational Age | -0.027 | 0.035 | 3917 | 0.423 | 0.439 | 0.635 | -0.047 | 0.032 | 4196 | 0.435 | 0.148 | 0.356 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | Birth weight | -0.018 | 0.034 | 3917 | 0.422 | 0.592 | 0.719 | -0.022 | 0.033 | 4196 | 0.434 | 0.514 | 0.672 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | Tobacco use | -0.080 | 0.038 | 3917 | 0.423 | 0.036 | 0.712 | 0.056 | 0.037 | 4196 | 0.434 | 0.123 | 0.433 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | Alcohol use | -0.020 | 0.028 | 3917 | 0.423 | 0.471 | 0.781 | -0.021 | 0.027 | 4196 | 0.435 | 0.428 | 0.889 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | Marijuana use | -0.061 | 0.054 | 3917 | 0.423 | 0.263 | 0.927 | -0.047 | 0.052 | 4196 | 0.435 | 0.373 | 0.737 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | Pregnancy complications | 0.020 | 0.025 | 3917 | 0.423 | 0.426 | 0.783 | -0.054 | 0.024 | 4196 | 0.435 | 0.022 | 0.466 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | Birth complications | -0.016 | 0.027 | 3917 | 0.423 | 0.568 | 0.823 | -0.013 | 0.025 | 4196 | 0.434 | 0.610 | 0.972 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | Unplanned pregnancy | -0.013 | 0.025 | 3917 | 0.539 | 0.595 | 0.970 | -0.011 | 0.026 | 4196 | 0.486 | 0.665 | 0.923 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | C-Section | 0.003 | 0.023 | 3917 | 0.539 | 0.880 | 0.922 | 0.003 | 0.023 | 4196 | 0.486 | 0.881 | 0.951 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | Gestational Age | 0.070 | 0.032 | 3917 | 0.540 | 0.026 | 0.120 | 0.059 | 0.031 | 4196 | 0.486 | 0.059 | 0.202 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | Birth weight | 0.060 | 0.030 | 3917 | 0.540 | 0.051 | 0.156 | 0.046 | 0.032 | 4196 | 0.486 | 0.144 | 0.393 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | Tobacco use | 0.019 | 0.035 | 3917 | 0.539 | 0.588 | 0.973 | 0.007 | 0.035 | 4196 | 0.486 | 0.840 | 0.921 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | Alcohol use | 0.003 | 0.025 | 3917 | 0.539 | 0.899 | 0.983 | 0.001 | 0.026 | 4196 | 0.486 | 0.960 | 0.993 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | Marijuana use | -0.001 | 0.049 | 3917 | 0.539 | 0.982 | 0.982 | -0.060 | 0.051 | 4196 | 0.486 | 0.239 | 0.733 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | Pregnancy complications | 0.010 | 0.022 | 3917 | 0.539 | 0.636 | 0.882 | 0.007 | 0.023 | 4196 | 0.486 | 0.765 | 0.921 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | Birth complications | 0.023 | 0.025 | 3917 | 0.539 | 0.348 | 0.800 | 0.017 | 0.024 | 4196 | 0.486 | 0.480 | 0.972 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | Unplanned pregnancy | -0.019 | 0.023 | 3917 | 0.626 | 0.394 | 0.970 | 0.019 | 0.022 | 4196 | 0.627 | 0.384 | 0.923 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | C-Section | 0.033 | 0.020 | 3917 | 0.626 | 0.109 | 0.370 | 0.048 | 0.020 | 4196 | 0.628 | 0.014 | 0.104 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | Gestational Age | 0.064 | 0.028 | 3917 | 0.626 | 0.024 | 0.116 | 0.052 | 0.027 | 4196 | 0.628 | 0.053 | 0.189 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | Birth weight | 0.040 | 0.027 | 3917 | 0.626 | 0.146 | 0.332 | -0.016 | 0.027 | 4196 | 0.627 | 0.550 | 0.679 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | Tobacco use | 0.046 | 0.031 | 3917 | 0.626 | 0.134 | 0.712 | 0.007 | 0.030 | 4196 | 0.627 | 0.823 | 0.917 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | Alcohol use | 0.006 | 0.022 | 3917 | 0.626 | 0.779 | 0.913 | -0.008 | 0.022 | 4196 | 0.627 | 0.708 | 0.971 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | Marijuana use | -0.034 | 0.044 | 3917 | 0.626 | 0.439 | 0.927 | 0.014 | 0.043 | 4196 | 0.627 | 0.742 | 0.883 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | Pregnancy complications | 0.033 | 0.020 | 3917 | 0.626 | 0.091 | 0.581 | -0.025 | 0.019 | 4196 | 0.627 | 0.204 | 0.886 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | Birth complications | -0.003 | 0.022 | 3917 | 0.626 | 0.899 | 0.985 | -0.002 | 0.021 | 4196 | 0.627 | 0.918 | 0.972 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | Unplanned pregnancy | -0.001 | 0.027 | 3917 | 0.453 | 0.968 | 0.970 | -0.015 | 0.027 | 4196 | 0.442 | 0.592 | 0.923 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | C-Section | 0.049 | 0.025 | 3917 | 0.454 | 0.046 | 0.263 | -0.025 | 0.024 | 4196 | 0.442 | 0.303 | 0.528 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | Gestational Age | 0.022 | 0.034 | 3917 | 0.453 | 0.512 | 0.675 | -0.053 | 0.033 | 4196 | 0.442 | 0.102 | 0.289 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | Birth weight | -0.021 | 0.033 | 3917 | 0.453 | 0.520 | 0.712 | 0.052 | 0.033 | 4196 | 0.442 | 0.112 | 0.318 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | Tobacco use | -0.017 | 0.037 | 3917 | 0.453 | 0.653 | 0.973 | 0.073 | 0.037 | 4196 | 0.442 | 0.047 | 0.359 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | Alcohol use | -0.072 | 0.027 | 3917 | 0.454 | 0.007 | 0.120 | 0.036 | 0.027 | 4196 | 0.442 | 0.178 | 0.809 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | Marijuana use | -0.003 | 0.053 | 3917 | 0.453 | 0.950 | 0.978 | 0.045 | 0.053 | 4196 | 0.442 | 0.398 | 0.737 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | Pregnancy complications | -0.015 | 0.024 | 3917 | 0.453 | 0.541 | 0.864 | 0.008 | 0.024 | 4196 | 0.441 | 0.737 | 0.921 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | Birth complications | -0.009 | 0.027 | 3917 | 0.453 | 0.742 | 0.935 | -0.006 | 0.025 | 4196 | 0.442 | 0.812 | 0.972 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | Unplanned pregnancy | 0.004 | 0.025 | 3917 | 0.540 | 0.865 | 0.970 | 0.002 | 0.025 | 4196 | 0.539 | 0.948 | 0.962 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | C-Section | -0.011 | 0.023 | 3917 | 0.540 | 0.617 | 0.835 | 0.015 | 0.022 | 4196 | 0.539 | 0.476 | 0.704 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | Gestational Age | 0.020 | 0.031 | 3917 | 0.540 | 0.526 | 0.675 | 0.030 | 0.030 | 4196 | 0.539 | 0.307 | 0.538 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | Birth weight | 0.012 | 0.030 | 3917 | 0.540 | 0.696 | 0.814 | -0.009 | 0.030 | 4196 | 0.539 | 0.778 | 0.813 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | Tobacco use | 0.006 | 0.034 | 3917 | 0.540 | 0.855 | 0.979 | -0.056 | 0.033 | 4196 | 0.539 | 0.094 | 0.400 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | Alcohol use | -0.018 | 0.025 | 3917 | 0.540 | 0.458 | 0.779 | -0.050 | 0.024 | 4196 | 0.539 | 0.040 | 0.449 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | Marijuana use | -0.084 | 0.048 | 3917 | 0.540 | 0.081 | 0.927 | -0.125 | 0.048 | 4196 | 0.539 | 0.009 | 0.322 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | Pregnancy complications | -0.001 | 0.022 | 3917 | 0.540 | 0.978 | 0.993 | 0.019 | 0.022 | 4196 | 0.539 | 0.374 | 0.921 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | Birth complications | 0.022 | 0.024 | 3917 | 0.540 | 0.364 | 0.800 | 0.019 | 0.023 | 4196 | 0.539 | 0.413 | 0.972 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | Unplanned pregnancy | -0.004 | 0.030 | 3917 | 0.364 | 0.904 | 0.970 | 0.017 | 0.029 | 4196 | 0.373 | 0.553 | 0.923 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | C-Section | 0.004 | 0.027 | 3917 | 0.364 | 0.891 | 0.922 | -0.008 | 0.025 | 4196 | 0.373 | 0.764 | 0.881 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | Gestational Age | 0.040 | 0.037 | 3917 | 0.364 | 0.279 | 0.451 | -0.054 | 0.035 | 4196 | 0.373 | 0.121 | 0.318 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | Birth weight | -0.007 | 0.036 | 3917 | 0.364 | 0.848 | 0.901 | -0.030 | 0.035 | 4196 | 0.373 | 0.397 | 0.602 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | Tobacco use | -0.034 | 0.041 | 3917 | 0.364 | 0.401 | 0.919 | -0.026 | 0.039 | 4196 | 0.373 | 0.502 | 0.821 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | Alcohol use | -0.050 | 0.029 | 3917 | 0.364 | 0.087 | 0.422 | 0.016 | 0.028 | 4196 | 0.373 | 0.574 | 0.951 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | Marijuana use | -0.048 | 0.058 | 3917 | 0.364 | 0.400 | 0.927 | -0.013 | 0.056 | 4196 | 0.373 | 0.820 | 0.915 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | Pregnancy complications | -0.034 | 0.026 | 3917 | 0.364 | 0.188 | 0.665 | -0.014 | 0.025 | 4196 | 0.373 | 0.570 | 0.921 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | Birth complications | 0.015 | 0.029 | 3917 | 0.364 | 0.617 | 0.823 | 0.047 | 0.027 | 4196 | 0.373 | 0.082 | 0.814 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | Unplanned pregnancy | -0.020 | 0.031 | 3917 | 0.295 | 0.509 | 0.970 | 0.004 | 0.029 | 4196 | 0.358 | 0.901 | 0.962 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | C-Section | 0.042 | 0.028 | 3917 | 0.296 | 0.130 | 0.374 | 0.043 | 0.026 | 4196 | 0.358 | 0.091 | 0.317 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | Gestational Age | 0.076 | 0.039 | 3917 | 0.297 | 0.051 | 0.192 | 0.048 | 0.035 | 4196 | 0.358 | 0.164 | 0.372 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | Birth weight | 0.055 | 0.037 | 3917 | 0.296 | 0.145 | 0.332 | 0.021 | 0.036 | 4196 | 0.358 | 0.549 | 0.679 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | Tobacco use | 0.006 | 0.042 | 3917 | 0.295 | 0.887 | 0.979 | 0.009 | 0.039 | 4196 | 0.358 | 0.812 | 0.917 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | Alcohol use | -0.061 | 0.030 | 3917 | 0.296 | 0.046 | 0.348 | 0.026 | 0.029 | 4196 | 0.358 | 0.357 | 0.889 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | Marijuana use | 0.028 | 0.060 | 3917 | 0.295 | 0.643 | 0.931 | -0.097 | 0.057 | 4196 | 0.358 | 0.087 | 0.538 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | Pregnancy complications | -0.012 | 0.027 | 3917 | 0.295 | 0.648 | 0.882 | 0.014 | 0.025 | 4196 | 0.358 | 0.586 | 0.921 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | Birth complications | 0.029 | 0.030 | 3917 | 0.296 | 0.339 | 0.800 | 0.013 | 0.027 | 4196 | 0.358 | 0.633 | 0.972 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | Unplanned pregnancy | 0.048 | 0.032 | 3917 | 0.247 | 0.128 | 0.970 | -0.030 | 0.031 | 4196 | 0.253 | 0.342 | 0.923 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | C-Section | 0.044 | 0.029 | 3917 | 0.248 | 0.127 | 0.374 | 0.052 | 0.027 | 4196 | 0.254 | 0.057 | 0.258 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | Gestational Age | 0.154 | 0.040 | 3917 | 0.251 | 0.000 | 0.004 | 0.089 | 0.037 | 4196 | 0.255 | 0.017 | 0.091 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | Birth weight | 0.041 | 0.038 | 3917 | 0.247 | 0.285 | 0.562 | 0.143 | 0.038 | 4196 | 0.257 | 0.000 | 0.010 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | Tobacco use | -0.105 | 0.044 | 3917 | 0.248 | 0.016 | 0.712 | -0.062 | 0.042 | 4196 | 0.253 | 0.137 | 0.444 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | Alcohol use | -0.090 | 0.031 | 3917 | 0.248 | 0.004 | 0.120 | 0.000 | 0.031 | 4196 | 0.253 | 0.993 | 0.993 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | Marijuana use | 0.008 | 0.061 | 3917 | 0.247 | 0.891 | 0.978 | -0.024 | 0.060 | 4196 | 0.253 | 0.696 | 0.860 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | Pregnancy complications | -0.001 | 0.028 | 3917 | 0.247 | 0.969 | 0.993 | 0.049 | 0.027 | 4196 | 0.254 | 0.071 | 0.637 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | Birth complications | 0.037 | 0.031 | 3917 | 0.247 | 0.240 | 0.800 | -0.003 | 0.029 | 4196 | 0.253 | 0.905 | 0.972 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | Unplanned pregnancy | 0.001 | 0.032 | 3917 | 0.246 | 0.970 | 0.970 | -0.017 | 0.032 | 4196 | 0.226 | 0.604 | 0.923 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | C-Section | 0.039 | 0.029 | 3917 | 0.246 | 0.182 | 0.428 | 0.041 | 0.028 | 4196 | 0.226 | 0.141 | 0.325 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | Gestational Age | 0.059 | 0.040 | 3917 | 0.246 | 0.143 | 0.286 | 0.055 | 0.038 | 4196 | 0.226 | 0.149 | 0.356 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | Birth weight | 0.012 | 0.039 | 3917 | 0.246 | 0.752 | 0.853 | 0.087 | 0.039 | 4196 | 0.227 | 0.025 | 0.162 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | Tobacco use | 0.049 | 0.044 | 3917 | 0.246 | 0.269 | 0.919 | -0.068 | 0.043 | 4196 | 0.226 | 0.113 | 0.432 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | Alcohol use | 0.039 | 0.032 | 3917 | 0.246 | 0.218 | 0.600 | -0.028 | 0.031 | 4196 | 0.226 | 0.374 | 0.889 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | Marijuana use | -0.025 | 0.062 | 3917 | 0.246 | 0.687 | 0.948 | -0.089 | 0.062 | 4196 | 0.226 | 0.152 | 0.606 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | Pregnancy complications | 0.037 | 0.028 | 3917 | 0.246 | 0.191 | 0.665 | 0.011 | 0.028 | 4196 | 0.226 | 0.680 | 0.921 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | Birth complications | 0.046 | 0.031 | 3917 | 0.246 | 0.146 | 0.800 | 0.000 | 0.029 | 4196 | 0.226 | 0.990 | 0.990 |
| smri_area_cdk_insulalh | Cortical area lh-insula | Unplanned pregnancy | 0.020 | 0.028 | 3917 | 0.410 | 0.478 | 0.970 | 0.004 | 0.028 | 4196 | 0.392 | 0.889 | 0.962 |
| smri_area_cdk_insulalh | Cortical area lh-insula | C-Section | -0.087 | 0.025 | 3917 | 0.412 | 0.000 | 0.017 | -0.012 | 0.024 | 4196 | 0.392 | 0.623 | 0.784 |
| smri_area_cdk_insulalh | Cortical area lh-insula | Gestational Age | -0.082 | 0.035 | 3917 | 0.411 | 0.017 | 0.091 | -0.052 | 0.033 | 4196 | 0.392 | 0.115 | 0.312 |
| smri_area_cdk_insulalh | Cortical area lh-insula | Birth weight | -0.128 | 0.033 | 3917 | 0.412 | 0.000 | 0.003 | -0.111 | 0.034 | 4196 | 0.393 | 0.001 | 0.031 |
| smri_area_cdk_insulalh | Cortical area lh-insula | Tobacco use | -0.001 | 0.038 | 3917 | 0.410 | 0.969 | 0.990 | 0.076 | 0.037 | 4196 | 0.392 | 0.041 | 0.359 |
| smri_area_cdk_insulalh | Cortical area lh-insula | Alcohol use | -0.017 | 0.027 | 3917 | 0.411 | 0.521 | 0.829 | 0.026 | 0.027 | 4196 | 0.392 | 0.338 | 0.889 |
| smri_area_cdk_insulalh | Cortical area lh-insula | Marijuana use | 0.005 | 0.053 | 3917 | 0.410 | 0.919 | 0.978 | 0.098 | 0.054 | 4196 | 0.392 | 0.068 | 0.538 |
| smri_area_cdk_insulalh | Cortical area lh-insula | Pregnancy complications | -0.041 | 0.024 | 3917 | 0.411 | 0.086 | 0.581 | -0.022 | 0.024 | 4196 | 0.392 | 0.363 | 0.921 |
| smri_area_cdk_insulalh | Cortical area lh-insula | Birth complications | -0.030 | 0.027 | 3917 | 0.410 | 0.261 | 0.800 | -0.032 | 0.026 | 4196 | 0.392 | 0.204 | 0.814 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | Unplanned pregnancy | 0.017 | 0.031 | 3917 | 0.287 | 0.576 | 0.970 | 0.028 | 0.030 | 4196 | 0.307 | 0.353 | 0.923 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | C-Section | 0.007 | 0.028 | 3917 | 0.287 | 0.804 | 0.889 | 0.005 | 0.027 | 4196 | 0.307 | 0.843 | 0.940 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | Gestational Age | -0.075 | 0.039 | 3917 | 0.288 | 0.054 | 0.192 | -0.086 | 0.036 | 4196 | 0.309 | 0.017 | 0.091 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | Birth weight | -0.058 | 0.038 | 3917 | 0.287 | 0.125 | 0.326 | -0.062 | 0.037 | 4196 | 0.308 | 0.091 | 0.283 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | Tobacco use | 0.036 | 0.043 | 3917 | 0.287 | 0.403 | 0.919 | -0.040 | 0.041 | 4196 | 0.307 | 0.330 | 0.716 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | Alcohol use | 0.032 | 0.031 | 3917 | 0.287 | 0.291 | 0.600 | 0.017 | 0.030 | 4196 | 0.307 | 0.570 | 0.951 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | Marijuana use | -0.028 | 0.060 | 3917 | 0.287 | 0.642 | 0.931 | -0.050 | 0.059 | 4196 | 0.307 | 0.390 | 0.737 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | Pregnancy complications | 0.001 | 0.027 | 3917 | 0.287 | 0.965 | 0.993 | 0.047 | 0.026 | 4196 | 0.307 | 0.075 | 0.637 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | Birth complications | 0.011 | 0.030 | 3917 | 0.287 | 0.715 | 0.921 | 0.021 | 0.028 | 4196 | 0.307 | 0.453 | 0.972 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | Unplanned pregnancy | -0.014 | 0.033 | 3917 | 0.236 | 0.676 | 0.970 | -0.013 | 0.032 | 4196 | 0.218 | 0.692 | 0.942 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | C-Section | 0.019 | 0.029 | 3917 | 0.236 | 0.513 | 0.758 | 0.050 | 0.028 | 4196 | 0.218 | 0.081 | 0.306 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | Gestational Age | 0.034 | 0.041 | 3917 | 0.236 | 0.400 | 0.605 | 0.032 | 0.039 | 4196 | 0.218 | 0.407 | 0.554 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | Birth weight | -0.024 | 0.039 | 3917 | 0.236 | 0.539 | 0.718 | 0.032 | 0.039 | 4196 | 0.218 | 0.412 | 0.608 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | Tobacco use | 0.040 | 0.045 | 3917 | 0.236 | 0.368 | 0.919 | -0.010 | 0.044 | 4196 | 0.218 | 0.817 | 0.917 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | Alcohol use | 0.036 | 0.032 | 3917 | 0.236 | 0.255 | 0.600 | -0.028 | 0.032 | 4196 | 0.218 | 0.375 | 0.889 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | Marijuana use | 0.031 | 0.063 | 3917 | 0.236 | 0.623 | 0.931 | -0.036 | 0.063 | 4196 | 0.218 | 0.569 | 0.795 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | Pregnancy complications | -0.028 | 0.028 | 3917 | 0.236 | 0.318 | 0.665 | -0.008 | 0.028 | 4196 | 0.218 | 0.785 | 0.921 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | Birth complications | -0.021 | 0.032 | 3917 | 0.236 | 0.506 | 0.800 | 0.042 | 0.030 | 4196 | 0.218 | 0.160 | 0.814 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | Unplanned pregnancy | -0.029 | 0.029 | 3917 | 0.381 | 0.330 | 0.970 | -0.002 | 0.029 | 4196 | 0.363 | 0.958 | 0.962 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | C-Section | 0.027 | 0.026 | 3917 | 0.381 | 0.316 | 0.597 | 0.043 | 0.026 | 4196 | 0.363 | 0.093 | 0.317 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | Gestational Age | 0.069 | 0.037 | 3917 | 0.381 | 0.061 | 0.208 | 0.037 | 0.035 | 4196 | 0.363 | 0.291 | 0.538 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | Birth weight | 0.072 | 0.035 | 3917 | 0.381 | 0.042 | 0.144 | 0.096 | 0.036 | 4196 | 0.364 | 0.007 | 0.059 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | Tobacco use | -0.024 | 0.040 | 3917 | 0.381 | 0.544 | 0.973 | -0.016 | 0.039 | 4196 | 0.363 | 0.692 | 0.904 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | Alcohol use | 0.008 | 0.029 | 3917 | 0.381 | 0.773 | 0.913 | -0.016 | 0.029 | 4196 | 0.363 | 0.566 | 0.951 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | Marijuana use | -0.040 | 0.057 | 3917 | 0.381 | 0.479 | 0.927 | 0.038 | 0.057 | 4196 | 0.363 | 0.499 | 0.737 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | Pregnancy complications | 0.007 | 0.026 | 3917 | 0.381 | 0.789 | 0.965 | -0.028 | 0.025 | 4196 | 0.363 | 0.270 | 0.921 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | Birth complications | 0.003 | 0.029 | 3917 | 0.381 | 0.913 | 0.985 | 0.001 | 0.027 | 4196 | 0.363 | 0.981 | 0.990 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | Unplanned pregnancy | 0.008 | 0.031 | 3917 | 0.269 | 0.794 | 0.970 | 0.045 | 0.031 | 4196 | 0.243 | 0.142 | 0.923 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | C-Section | 0.022 | 0.028 | 3917 | 0.269 | 0.437 | 0.725 | -0.070 | 0.027 | 4196 | 0.243 | 0.010 | 0.094 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | Gestational Age | -0.027 | 0.039 | 3917 | 0.269 | 0.485 | 0.673 | 0.091 | 0.037 | 4196 | 0.245 | 0.014 | 0.088 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | Birth weight | 0.073 | 0.038 | 3917 | 0.270 | 0.053 | 0.156 | 0.067 | 0.038 | 4196 | 0.244 | 0.072 | 0.250 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | Tobacco use | 0.081 | 0.043 | 3917 | 0.270 | 0.056 | 0.712 | 0.028 | 0.042 | 4196 | 0.243 | 0.502 | 0.821 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | Alcohol use | -0.027 | 0.031 | 3917 | 0.269 | 0.380 | 0.699 | -0.006 | 0.030 | 4196 | 0.243 | 0.849 | 0.993 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | Marijuana use | 0.113 | 0.060 | 3917 | 0.270 | 0.060 | 0.927 | 0.181 | 0.060 | 4196 | 0.245 | 0.002 | 0.166 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | Pregnancy complications | -0.041 | 0.027 | 3917 | 0.269 | 0.135 | 0.665 | -0.022 | 0.027 | 4196 | 0.243 | 0.411 | 0.921 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | Birth complications | -0.002 | 0.030 | 3917 | 0.269 | 0.952 | 0.985 | 0.010 | 0.028 | 4196 | 0.243 | 0.735 | 0.972 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | Unplanned pregnancy | -0.014 | 0.035 | 3917 | 0.107 | 0.680 | 0.970 | -0.030 | 0.034 | 4196 | 0.097 | 0.392 | 0.923 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | C-Section | 0.078 | 0.031 | 3917 | 0.109 | 0.013 | 0.114 | 0.103 | 0.030 | 4196 | 0.101 | 0.001 | 0.023 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | Gestational Age | 0.111 | 0.044 | 3917 | 0.109 | 0.011 | 0.075 | 0.032 | 0.041 | 4196 | 0.098 | 0.443 | 0.569 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | Birth weight | 0.024 | 0.042 | 3917 | 0.107 | 0.575 | 0.719 | 0.029 | 0.042 | 4196 | 0.097 | 0.485 | 0.672 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | Tobacco use | -0.082 | 0.048 | 3917 | 0.107 | 0.087 | 0.712 | -0.081 | 0.046 | 4196 | 0.098 | 0.083 | 0.396 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | Alcohol use | -0.039 | 0.034 | 3917 | 0.107 | 0.255 | 0.600 | -0.018 | 0.034 | 4196 | 0.097 | 0.601 | 0.951 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | Marijuana use | 0.010 | 0.067 | 3917 | 0.107 | 0.878 | 0.978 | -0.055 | 0.067 | 4196 | 0.097 | 0.411 | 0.737 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | Pregnancy complications | 0.016 | 0.030 | 3917 | 0.107 | 0.602 | 0.882 | 0.012 | 0.030 | 4196 | 0.097 | 0.676 | 0.921 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | Birth complications | -0.036 | 0.034 | 3917 | 0.107 | 0.285 | 0.800 | 0.006 | 0.032 | 4196 | 0.097 | 0.856 | 0.972 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | Unplanned pregnancy | 0.018 | 0.027 | 3917 | 0.471 | 0.509 | 0.970 | -0.004 | 0.026 | 4196 | 0.480 | 0.879 | 0.962 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | C-Section | -0.008 | 0.024 | 3917 | 0.471 | 0.736 | 0.878 | 0.013 | 0.023 | 4196 | 0.480 | 0.574 | 0.784 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | Gestational Age | -0.042 | 0.033 | 3917 | 0.470 | 0.208 | 0.357 | -0.015 | 0.031 | 4196 | 0.480 | 0.640 | 0.742 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | Birth weight | -0.002 | 0.032 | 3917 | 0.471 | 0.946 | 0.961 | 0.016 | 0.032 | 4196 | 0.480 | 0.622 | 0.730 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | Tobacco use | 0.056 | 0.036 | 3917 | 0.471 | 0.128 | 0.712 | 0.038 | 0.035 | 4196 | 0.480 | 0.282 | 0.660 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | Alcohol use | 0.014 | 0.026 | 3917 | 0.471 | 0.601 | 0.852 | -0.004 | 0.026 | 4196 | 0.480 | 0.870 | 0.993 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | Marijuana use | 0.047 | 0.051 | 3917 | 0.471 | 0.360 | 0.927 | -0.003 | 0.051 | 4196 | 0.480 | 0.960 | 0.975 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | Pregnancy complications | -0.027 | 0.023 | 3917 | 0.471 | 0.253 | 0.665 | 0.059 | 0.023 | 4196 | 0.481 | 0.010 | 0.466 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | Birth complications | 0.027 | 0.026 | 3917 | 0.471 | 0.307 | 0.800 | -0.051 | 0.024 | 4196 | 0.480 | 0.032 | 0.814 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | Unplanned pregnancy | -0.020 | 0.028 | 3917 | 0.428 | 0.480 | 0.970 | 0.013 | 0.028 | 4196 | 0.397 | 0.636 | 0.923 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | C-Section | -0.055 | 0.025 | 3917 | 0.429 | 0.030 | 0.201 | 0.014 | 0.025 | 4196 | 0.396 | 0.586 | 0.784 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | Gestational Age | -0.046 | 0.035 | 3917 | 0.429 | 0.188 | 0.341 | -0.057 | 0.034 | 4196 | 0.397 | 0.095 | 0.281 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | Birth weight | -0.088 | 0.034 | 3917 | 0.430 | 0.009 | 0.043 | -0.048 | 0.034 | 4196 | 0.397 | 0.163 | 0.412 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | Tobacco use | -0.056 | 0.038 | 3917 | 0.429 | 0.144 | 0.712 | -0.037 | 0.038 | 4196 | 0.397 | 0.337 | 0.716 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | Alcohol use | -0.001 | 0.027 | 3917 | 0.428 | 0.979 | 0.995 | 0.025 | 0.028 | 4196 | 0.397 | 0.375 | 0.889 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | Marijuana use | -0.028 | 0.054 | 3917 | 0.428 | 0.601 | 0.931 | -0.100 | 0.055 | 4196 | 0.397 | 0.069 | 0.538 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | Pregnancy complications | 0.007 | 0.024 | 3917 | 0.428 | 0.760 | 0.965 | -0.008 | 0.025 | 4196 | 0.397 | 0.751 | 0.921 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | Birth complications | -0.027 | 0.027 | 3917 | 0.429 | 0.330 | 0.800 | -0.002 | 0.026 | 4196 | 0.397 | 0.929 | 0.972 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | Unplanned pregnancy | -0.004 | 0.026 | 3917 | 0.519 | 0.876 | 0.970 | -0.021 | 0.026 | 4196 | 0.505 | 0.405 | 0.923 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | C-Section | 0.040 | 0.023 | 3917 | 0.520 | 0.084 | 0.347 | 0.013 | 0.023 | 4196 | 0.505 | 0.563 | 0.784 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | Gestational Age | 0.048 | 0.032 | 3917 | 0.519 | 0.135 | 0.279 | 0.032 | 0.031 | 4196 | 0.505 | 0.299 | 0.538 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | Birth weight | 0.044 | 0.031 | 3917 | 0.519 | 0.152 | 0.333 | 0.025 | 0.031 | 4196 | 0.505 | 0.432 | 0.612 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | Tobacco use | -0.021 | 0.035 | 3917 | 0.519 | 0.557 | 0.973 | -0.049 | 0.035 | 4196 | 0.505 | 0.159 | 0.471 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | Alcohol use | -0.011 | 0.025 | 3917 | 0.519 | 0.668 | 0.890 | -0.001 | 0.025 | 4196 | 0.505 | 0.966 | 0.993 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | Marijuana use | -0.029 | 0.050 | 3917 | 0.519 | 0.556 | 0.927 | -0.018 | 0.050 | 4196 | 0.505 | 0.717 | 0.871 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | Pregnancy complications | 0.018 | 0.022 | 3917 | 0.519 | 0.422 | 0.783 | 0.033 | 0.022 | 4196 | 0.505 | 0.139 | 0.861 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | Birth complications | 0.014 | 0.025 | 3917 | 0.519 | 0.569 | 0.823 | 0.039 | 0.024 | 4196 | 0.505 | 0.102 | 0.814 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | Unplanned pregnancy | 0.010 | 0.031 | 3917 | 0.291 | 0.740 | 0.970 | -0.019 | 0.030 | 4196 | 0.315 | 0.537 | 0.923 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | C-Section | -0.014 | 0.028 | 3917 | 0.292 | 0.613 | 0.835 | -0.041 | 0.027 | 4196 | 0.315 | 0.123 | 0.325 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | Gestational Age | -0.123 | 0.039 | 3917 | 0.293 | 0.002 | 0.019 | -0.005 | 0.036 | 4196 | 0.315 | 0.891 | 0.932 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | Birth weight | -0.021 | 0.038 | 3917 | 0.292 | 0.585 | 0.719 | -0.080 | 0.037 | 4196 | 0.315 | 0.029 | 0.162 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | Tobacco use | -0.069 | 0.043 | 3917 | 0.292 | 0.108 | 0.712 | 0.013 | 0.041 | 4196 | 0.315 | 0.756 | 0.916 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | Alcohol use | -0.048 | 0.031 | 3917 | 0.292 | 0.122 | 0.478 | -0.076 | 0.030 | 4196 | 0.316 | 0.010 | 0.323 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | Marijuana use | -0.067 | 0.060 | 3917 | 0.292 | 0.270 | 0.927 | -0.085 | 0.059 | 4196 | 0.315 | 0.148 | 0.606 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | Pregnancy complications | -0.001 | 0.027 | 3917 | 0.291 | 0.969 | 0.993 | -0.059 | 0.026 | 4196 | 0.316 | 0.024 | 0.466 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | Birth complications | -0.001 | 0.031 | 3917 | 0.291 | 0.967 | 0.985 | -0.010 | 0.028 | 4196 | 0.315 | 0.715 | 0.972 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | Unplanned pregnancy | -0.015 | 0.029 | 3917 | 0.392 | 0.597 | 0.970 | 0.081 | 0.029 | 4196 | 0.366 | 0.005 | 0.326 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | C-Section | -0.044 | 0.026 | 3917 | 0.392 | 0.092 | 0.347 | -0.062 | 0.025 | 4196 | 0.365 | 0.014 | 0.104 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | Gestational Age | -0.071 | 0.036 | 3917 | 0.392 | 0.050 | 0.192 | 0.102 | 0.035 | 4196 | 0.367 | 0.003 | 0.058 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | Birth weight | 0.095 | 0.035 | 3917 | 0.393 | 0.006 | 0.041 | 0.063 | 0.035 | 4196 | 0.365 | 0.073 | 0.250 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | Tobacco use | 0.057 | 0.039 | 3917 | 0.392 | 0.147 | 0.712 | 0.069 | 0.039 | 4196 | 0.365 | 0.077 | 0.396 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | Alcohol use | 0.007 | 0.028 | 3917 | 0.392 | 0.792 | 0.913 | 0.010 | 0.028 | 4196 | 0.365 | 0.714 | 0.971 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | Marijuana use | 0.078 | 0.056 | 3917 | 0.392 | 0.164 | 0.927 | 0.091 | 0.056 | 4196 | 0.365 | 0.104 | 0.546 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | Pregnancy complications | -0.013 | 0.025 | 3917 | 0.392 | 0.595 | 0.882 | -0.001 | 0.025 | 4196 | 0.365 | 0.954 | 0.985 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | Birth complications | -0.021 | 0.028 | 3917 | 0.392 | 0.465 | 0.800 | 0.032 | 0.027 | 4196 | 0.365 | 0.225 | 0.814 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | Unplanned pregnancy | -0.021 | 0.025 | 3917 | 0.496 | 0.409 | 0.970 | -0.032 | 0.025 | 4196 | 0.500 | 0.195 | 0.923 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | C-Section | -0.070 | 0.023 | 3917 | 0.499 | 0.002 | 0.046 | -0.060 | 0.022 | 4196 | 0.502 | 0.006 | 0.078 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | Gestational Age | -0.042 | 0.032 | 3917 | 0.497 | 0.189 | 0.341 | -0.091 | 0.030 | 4196 | 0.503 | 0.002 | 0.058 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | Birth weight | -0.141 | 0.031 | 3917 | 0.501 | 0.000 | 0.000 | -0.090 | 0.030 | 4196 | 0.502 | 0.003 | 0.042 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | Tobacco use | 0.001 | 0.035 | 3917 | 0.496 | 0.986 | 0.990 | 0.017 | 0.034 | 4196 | 0.500 | 0.613 | 0.868 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | Alcohol use | -0.028 | 0.025 | 3917 | 0.496 | 0.256 | 0.600 | 0.008 | 0.025 | 4196 | 0.500 | 0.757 | 0.971 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | Marijuana use | 0.021 | 0.049 | 3917 | 0.496 | 0.670 | 0.948 | -0.035 | 0.048 | 4196 | 0.500 | 0.465 | 0.737 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | Pregnancy complications | -0.007 | 0.022 | 3917 | 0.496 | 0.758 | 0.965 | -0.027 | 0.022 | 4196 | 0.501 | 0.208 | 0.886 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | Birth complications | 0.020 | 0.025 | 3917 | 0.496 | 0.417 | 0.800 | -0.005 | 0.023 | 4196 | 0.500 | 0.822 | 0.972 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | Unplanned pregnancy | 0.013 | 0.031 | 3917 | 0.251 | 0.683 | 0.970 | 0.017 | 0.030 | 4196 | 0.256 | 0.569 | 0.923 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | C-Section | -0.012 | 0.028 | 3917 | 0.250 | 0.683 | 0.860 | -0.043 | 0.027 | 4196 | 0.256 | 0.108 | 0.325 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | Gestational Age | -0.098 | 0.039 | 3917 | 0.250 | 0.013 | 0.078 | 0.020 | 0.037 | 4196 | 0.257 | 0.583 | 0.696 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | Birth weight | 0.047 | 0.038 | 3917 | 0.251 | 0.213 | 0.438 | -0.040 | 0.037 | 4196 | 0.256 | 0.277 | 0.502 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | Tobacco use | -0.013 | 0.043 | 3917 | 0.251 | 0.759 | 0.973 | -0.040 | 0.041 | 4196 | 0.257 | 0.335 | 0.716 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | Alcohol use | -0.025 | 0.031 | 3917 | 0.251 | 0.417 | 0.747 | 0.014 | 0.030 | 4196 | 0.256 | 0.640 | 0.971 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | Marijuana use | 0.049 | 0.061 | 3917 | 0.251 | 0.419 | 0.927 | 0.052 | 0.059 | 4196 | 0.256 | 0.375 | 0.737 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | Pregnancy complications | -0.013 | 0.027 | 3917 | 0.251 | 0.629 | 0.882 | -0.027 | 0.026 | 4196 | 0.256 | 0.306 | 0.921 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | Birth complications | -0.027 | 0.031 | 3917 | 0.250 | 0.371 | 0.800 | -0.010 | 0.028 | 4196 | 0.256 | 0.732 | 0.972 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | Unplanned pregnancy | 0.028 | 0.026 | 3917 | 0.499 | 0.275 | 0.970 | 0.001 | 0.025 | 4196 | 0.515 | 0.957 | 0.962 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | C-Section | 0.026 | 0.023 | 3917 | 0.499 | 0.265 | 0.530 | 0.039 | 0.022 | 4196 | 0.516 | 0.072 | 0.304 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | Gestational Age | 0.068 | 0.032 | 3917 | 0.500 | 0.034 | 0.145 | -0.027 | 0.030 | 4196 | 0.515 | 0.355 | 0.538 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | Birth weight | -0.073 | 0.031 | 3917 | 0.499 | 0.019 | 0.076 | -0.025 | 0.030 | 4196 | 0.515 | 0.398 | 0.602 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | Tobacco use | 0.003 | 0.035 | 3917 | 0.499 | 0.936 | 0.979 | 0.044 | 0.033 | 4196 | 0.515 | 0.190 | 0.539 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | Alcohol use | -0.008 | 0.025 | 3917 | 0.499 | 0.756 | 0.913 | 0.041 | 0.024 | 4196 | 0.516 | 0.094 | 0.530 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | Marijuana use | 0.010 | 0.049 | 3917 | 0.499 | 0.833 | 0.978 | -0.082 | 0.048 | 4196 | 0.516 | 0.088 | 0.538 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | Pregnancy complications | 0.024 | 0.022 | 3917 | 0.499 | 0.288 | 0.665 | -0.026 | 0.022 | 4196 | 0.516 | 0.220 | 0.886 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | Birth complications | 0.028 | 0.025 | 3917 | 0.499 | 0.261 | 0.800 | 0.007 | 0.023 | 4196 | 0.515 | 0.748 | 0.972 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | Unplanned pregnancy | 0.004 | 0.023 | 3917 | 0.605 | 0.864 | 0.970 | -0.011 | 0.023 | 4196 | 0.604 | 0.616 | 0.923 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | C-Section | -0.010 | 0.021 | 3917 | 0.605 | 0.639 | 0.835 | 0.000 | 0.020 | 4196 | 0.604 | 0.997 | 0.997 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | Gestational Age | -0.085 | 0.029 | 3917 | 0.607 | 0.003 | 0.028 | -0.082 | 0.027 | 4196 | 0.605 | 0.002 | 0.058 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | Birth weight | -0.081 | 0.027 | 3917 | 0.606 | 0.003 | 0.027 | -0.077 | 0.027 | 4196 | 0.605 | 0.005 | 0.057 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | Tobacco use | -0.014 | 0.031 | 3917 | 0.605 | 0.661 | 0.973 | -0.021 | 0.030 | 4196 | 0.604 | 0.492 | 0.821 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | Alcohol use | 0.010 | 0.022 | 3917 | 0.605 | 0.657 | 0.890 | 0.030 | 0.022 | 4196 | 0.604 | 0.170 | 0.809 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | Marijuana use | 0.030 | 0.044 | 3917 | 0.605 | 0.499 | 0.927 | -0.023 | 0.044 | 4196 | 0.604 | 0.595 | 0.795 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | Pregnancy complications | -0.010 | 0.020 | 3917 | 0.605 | 0.627 | 0.882 | 0.010 | 0.020 | 4196 | 0.604 | 0.619 | 0.921 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | Birth complications | -0.032 | 0.022 | 3917 | 0.605 | 0.148 | 0.800 | -0.006 | 0.021 | 4196 | 0.604 | 0.780 | 0.972 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | Unplanned pregnancy | -0.013 | 0.033 | 3917 | 0.183 | 0.685 | 0.970 | -0.061 | 0.031 | 4196 | 0.236 | 0.051 | 0.923 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | C-Section | -0.062 | 0.030 | 3917 | 0.184 | 0.040 | 0.246 | 0.010 | 0.028 | 4196 | 0.236 | 0.709 | 0.848 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | Gestational Age | -0.058 | 0.042 | 3917 | 0.183 | 0.161 | 0.313 | 0.033 | 0.038 | 4196 | 0.236 | 0.381 | 0.538 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | Birth weight | -0.037 | 0.040 | 3917 | 0.183 | 0.352 | 0.644 | -0.025 | 0.038 | 4196 | 0.236 | 0.506 | 0.672 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | Tobacco use | 0.024 | 0.045 | 3917 | 0.183 | 0.601 | 0.973 | 0.052 | 0.042 | 4196 | 0.236 | 0.220 | 0.586 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | Alcohol use | -0.045 | 0.033 | 3917 | 0.183 | 0.163 | 0.582 | 0.031 | 0.031 | 4196 | 0.236 | 0.319 | 0.889 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | Marijuana use | 0.057 | 0.064 | 3917 | 0.183 | 0.374 | 0.927 | -0.048 | 0.061 | 4196 | 0.236 | 0.434 | 0.737 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | Pregnancy complications | 0.039 | 0.029 | 3917 | 0.183 | 0.181 | 0.665 | 0.049 | 0.027 | 4196 | 0.236 | 0.073 | 0.637 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | Birth complications | 0.000 | 0.032 | 3917 | 0.183 | 0.997 | 0.997 | 0.036 | 0.029 | 4196 | 0.236 | 0.217 | 0.814 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | Unplanned pregnancy | -0.018 | 0.030 | 3917 | 0.340 | 0.550 | 0.970 | 0.044 | 0.030 | 4196 | 0.308 | 0.145 | 0.923 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | C-Section | 0.013 | 0.027 | 3917 | 0.340 | 0.632 | 0.835 | 0.041 | 0.027 | 4196 | 0.308 | 0.128 | 0.325 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | Gestational Age | 0.059 | 0.038 | 3917 | 0.341 | 0.120 | 0.255 | 0.034 | 0.036 | 4196 | 0.308 | 0.356 | 0.538 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | Birth weight | 0.027 | 0.037 | 3917 | 0.340 | 0.456 | 0.709 | -0.017 | 0.037 | 4196 | 0.308 | 0.644 | 0.730 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | Tobacco use | -0.014 | 0.041 | 3917 | 0.340 | 0.736 | 0.973 | -0.001 | 0.041 | 4196 | 0.308 | 0.984 | 0.985 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | Alcohol use | -0.010 | 0.030 | 3917 | 0.340 | 0.731 | 0.913 | -0.020 | 0.030 | 4196 | 0.308 | 0.503 | 0.949 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | Marijuana use | 0.056 | 0.058 | 3917 | 0.340 | 0.334 | 0.927 | 0.099 | 0.059 | 4196 | 0.308 | 0.095 | 0.538 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | Pregnancy complications | -0.030 | 0.026 | 3917 | 0.340 | 0.248 | 0.665 | 0.032 | 0.026 | 4196 | 0.308 | 0.221 | 0.886 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | Birth complications | 0.005 | 0.030 | 3917 | 0.340 | 0.876 | 0.985 | -0.016 | 0.028 | 4196 | 0.308 | 0.557 | 0.972 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | Unplanned pregnancy | 0.001 | 0.031 | 3917 | 0.300 | 0.962 | 0.970 | -0.038 | 0.031 | 4196 | 0.264 | 0.227 | 0.923 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | C-Section | -0.007 | 0.028 | 3917 | 0.300 | 0.808 | 0.889 | 0.027 | 0.028 | 4196 | 0.264 | 0.334 | 0.555 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | Gestational Age | -0.007 | 0.039 | 3917 | 0.300 | 0.853 | 0.920 | -0.035 | 0.038 | 4196 | 0.264 | 0.350 | 0.538 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | Birth weight | 0.005 | 0.038 | 3917 | 0.300 | 0.901 | 0.943 | -0.070 | 0.038 | 4196 | 0.265 | 0.069 | 0.250 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | Tobacco use | 0.068 | 0.043 | 3917 | 0.300 | 0.110 | 0.712 | 0.039 | 0.042 | 4196 | 0.264 | 0.356 | 0.716 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | Alcohol use | -0.031 | 0.031 | 3917 | 0.300 | 0.311 | 0.605 | -0.024 | 0.031 | 4196 | 0.264 | 0.445 | 0.889 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | Marijuana use | 0.055 | 0.060 | 3917 | 0.300 | 0.364 | 0.927 | -0.011 | 0.061 | 4196 | 0.264 | 0.861 | 0.929 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | Pregnancy complications | -0.016 | 0.027 | 3917 | 0.300 | 0.545 | 0.864 | -0.035 | 0.027 | 4196 | 0.264 | 0.200 | 0.886 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | Birth complications | 0.016 | 0.030 | 3917 | 0.300 | 0.609 | 0.823 | 0.004 | 0.029 | 4196 | 0.264 | 0.903 | 0.972 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | Unplanned pregnancy | 0.029 | 0.030 | 3917 | 0.324 | 0.335 | 0.970 | -0.022 | 0.029 | 4196 | 0.372 | 0.448 | 0.923 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | C-Section | 0.075 | 0.027 | 3917 | 0.325 | 0.006 | 0.079 | 0.076 | 0.025 | 4196 | 0.372 | 0.003 | 0.046 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | Gestational Age | 0.031 | 0.038 | 3917 | 0.324 | 0.416 | 0.614 | -0.030 | 0.034 | 4196 | 0.371 | 0.388 | 0.538 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | Birth weight | 0.021 | 0.037 | 3917 | 0.324 | 0.557 | 0.719 | -0.030 | 0.035 | 4196 | 0.371 | 0.384 | 0.602 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | Tobacco use | 0.033 | 0.041 | 3917 | 0.324 | 0.428 | 0.919 | 0.011 | 0.039 | 4196 | 0.371 | 0.777 | 0.916 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | Alcohol use | -0.017 | 0.030 | 3917 | 0.324 | 0.574 | 0.846 | 0.003 | 0.028 | 4196 | 0.371 | 0.928 | 0.993 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | Marijuana use | -0.114 | 0.058 | 3917 | 0.324 | 0.051 | 0.927 | -0.005 | 0.056 | 4196 | 0.371 | 0.929 | 0.961 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | Pregnancy complications | 0.045 | 0.026 | 3917 | 0.324 | 0.087 | 0.581 | 0.022 | 0.025 | 4196 | 0.372 | 0.374 | 0.921 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | Birth complications | 0.032 | 0.030 | 3917 | 0.324 | 0.275 | 0.800 | 0.020 | 0.027 | 4196 | 0.372 | 0.445 | 0.972 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | Unplanned pregnancy | 0.016 | 0.033 | 3917 | 0.227 | 0.629 | 0.970 | -0.018 | 0.032 | 4196 | 0.232 | 0.569 | 0.923 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | C-Section | 0.021 | 0.029 | 3917 | 0.227 | 0.474 | 0.750 | -0.045 | 0.028 | 4196 | 0.233 | 0.113 | 0.325 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | Gestational Age | -0.051 | 0.041 | 3917 | 0.228 | 0.210 | 0.357 | -0.099 | 0.038 | 4196 | 0.233 | 0.010 | 0.081 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | Birth weight | -0.036 | 0.040 | 3917 | 0.228 | 0.360 | 0.644 | -0.115 | 0.039 | 4196 | 0.234 | 0.003 | 0.042 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | Tobacco use | 0.014 | 0.045 | 3917 | 0.227 | 0.753 | 0.973 | 0.049 | 0.043 | 4196 | 0.232 | 0.259 | 0.652 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | Alcohol use | -0.052 | 0.032 | 3917 | 0.228 | 0.107 | 0.469 | 0.025 | 0.032 | 4196 | 0.232 | 0.432 | 0.889 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | Marijuana use | -0.081 | 0.063 | 3917 | 0.228 | 0.198 | 0.927 | 0.029 | 0.062 | 4196 | 0.232 | 0.637 | 0.803 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | Pregnancy complications | 0.000 | 0.029 | 3917 | 0.227 | 0.996 | 0.996 | -0.029 | 0.028 | 4196 | 0.232 | 0.294 | 0.921 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | Birth complications | 0.038 | 0.032 | 3917 | 0.228 | 0.241 | 0.800 | 0.009 | 0.030 | 4196 | 0.232 | 0.770 | 0.972 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | Unplanned pregnancy | 0.014 | 0.033 | 3917 | 0.145 | 0.674 | 0.970 | -0.019 | 0.032 | 4196 | 0.156 | 0.559 | 0.923 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | C-Section | 0.021 | 0.030 | 3917 | 0.145 | 0.490 | 0.757 | -0.063 | 0.028 | 4196 | 0.156 | 0.027 | 0.162 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | Gestational Age | -0.067 | 0.042 | 3917 | 0.145 | 0.109 | 0.255 | 0.090 | 0.039 | 4196 | 0.158 | 0.020 | 0.099 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | Birth weight | 0.016 | 0.040 | 3917 | 0.145 | 0.686 | 0.814 | 0.011 | 0.039 | 4196 | 0.156 | 0.769 | 0.813 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | Tobacco use | -0.014 | 0.045 | 3917 | 0.145 | 0.751 | 0.973 | -0.035 | 0.043 | 4196 | 0.156 | 0.427 | 0.806 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | Alcohol use | -0.029 | 0.032 | 3917 | 0.145 | 0.365 | 0.690 | -0.013 | 0.031 | 4196 | 0.156 | 0.668 | 0.971 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | Marijuana use | 0.091 | 0.064 | 3917 | 0.145 | 0.156 | 0.927 | 0.108 | 0.062 | 4196 | 0.156 | 0.082 | 0.538 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | Pregnancy complications | -0.064 | 0.029 | 3917 | 0.146 | 0.026 | 0.581 | -0.017 | 0.028 | 4196 | 0.156 | 0.536 | 0.921 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | Birth complications | -0.034 | 0.032 | 3917 | 0.145 | 0.296 | 0.800 | 0.024 | 0.030 | 4196 | 0.156 | 0.411 | 0.972 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | Unplanned pregnancy | 0.020 | 0.026 | 3917 | 0.522 | 0.442 | 0.970 | -0.021 | 0.025 | 4196 | 0.508 | 0.411 | 0.923 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | C-Section | 0.002 | 0.023 | 3917 | 0.522 | 0.917 | 0.922 | 0.008 | 0.022 | 4196 | 0.508 | 0.711 | 0.848 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | Gestational Age | -0.016 | 0.032 | 3917 | 0.522 | 0.624 | 0.744 | -0.023 | 0.030 | 4196 | 0.508 | 0.438 | 0.569 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | Birth weight | -0.083 | 0.031 | 3917 | 0.523 | 0.007 | 0.041 | -0.036 | 0.031 | 4196 | 0.508 | 0.244 | 0.502 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | Tobacco use | -0.024 | 0.035 | 3917 | 0.522 | 0.487 | 0.919 | -0.024 | 0.034 | 4196 | 0.508 | 0.478 | 0.821 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | Alcohol use | 0.002 | 0.025 | 3917 | 0.522 | 0.921 | 0.983 | -0.055 | 0.025 | 4196 | 0.508 | 0.027 | 0.368 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | Marijuana use | -0.059 | 0.049 | 3917 | 0.522 | 0.229 | 0.927 | -0.039 | 0.049 | 4196 | 0.508 | 0.420 | 0.737 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | Pregnancy complications | -0.007 | 0.022 | 3917 | 0.522 | 0.766 | 0.965 | -0.012 | 0.022 | 4196 | 0.508 | 0.578 | 0.921 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | Birth complications | -0.018 | 0.025 | 3917 | 0.522 | 0.462 | 0.800 | -0.028 | 0.023 | 4196 | 0.508 | 0.222 | 0.814 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | Unplanned pregnancy | -0.003 | 0.029 | 3917 | 0.397 | 0.924 | 0.970 | -0.013 | 0.029 | 4196 | 0.356 | 0.648 | 0.923 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | C-Section | -0.014 | 0.026 | 3917 | 0.397 | 0.578 | 0.819 | 0.002 | 0.026 | 4196 | 0.356 | 0.942 | 0.982 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | Gestational Age | 0.061 | 0.036 | 3917 | 0.398 | 0.092 | 0.242 | -0.004 | 0.035 | 4196 | 0.356 | 0.919 | 0.947 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | Birth weight | -0.068 | 0.035 | 3917 | 0.398 | 0.051 | 0.156 | -0.059 | 0.036 | 4196 | 0.356 | 0.096 | 0.283 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | Tobacco use | -0.032 | 0.039 | 3917 | 0.397 | 0.418 | 0.919 | -0.119 | 0.039 | 4196 | 0.358 | 0.003 | 0.091 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | Alcohol use | 0.035 | 0.028 | 3917 | 0.397 | 0.220 | 0.600 | -0.070 | 0.029 | 4196 | 0.357 | 0.015 | 0.323 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | Marijuana use | -0.033 | 0.055 | 3917 | 0.397 | 0.547 | 0.927 | -0.109 | 0.057 | 4196 | 0.357 | 0.054 | 0.538 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | Pregnancy complications | -0.042 | 0.025 | 3917 | 0.398 | 0.094 | 0.581 | -0.022 | 0.025 | 4196 | 0.356 | 0.377 | 0.921 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | Birth complications | -0.004 | 0.028 | 3917 | 0.397 | 0.887 | 0.985 | -0.006 | 0.027 | 4196 | 0.356 | 0.815 | 0.972 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | Unplanned pregnancy | -0.058 | 0.027 | 3917 | 0.474 | 0.032 | 0.970 | 0.005 | 0.026 | 4196 | 0.488 | 0.859 | 0.962 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | C-Section | 0.026 | 0.024 | 3917 | 0.474 | 0.287 | 0.557 | 0.069 | 0.023 | 4196 | 0.489 | 0.002 | 0.046 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | Gestational Age | 0.034 | 0.034 | 3917 | 0.474 | 0.318 | 0.495 | 0.087 | 0.031 | 4196 | 0.489 | 0.005 | 0.058 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | Birth weight | 0.081 | 0.032 | 3917 | 0.475 | 0.013 | 0.060 | 0.043 | 0.032 | 4196 | 0.488 | 0.177 | 0.413 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | Tobacco use | -0.010 | 0.037 | 3917 | 0.474 | 0.784 | 0.973 | -0.018 | 0.035 | 4196 | 0.488 | 0.612 | 0.868 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | Alcohol use | 0.010 | 0.026 | 3917 | 0.474 | 0.692 | 0.905 | 0.005 | 0.025 | 4196 | 0.488 | 0.831 | 0.993 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | Marijuana use | -0.034 | 0.052 | 3917 | 0.474 | 0.516 | 0.927 | 0.034 | 0.050 | 4196 | 0.488 | 0.495 | 0.737 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | Pregnancy complications | 0.015 | 0.023 | 3917 | 0.474 | 0.511 | 0.864 | -0.007 | 0.023 | 4196 | 0.488 | 0.767 | 0.921 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | Birth complications | -0.026 | 0.026 | 3917 | 0.474 | 0.331 | 0.800 | 0.020 | 0.024 | 4196 | 0.488 | 0.409 | 0.972 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | Unplanned pregnancy | 0.015 | 0.024 | 3917 | 0.546 | 0.532 | 0.970 | -0.038 | 0.024 | 4196 | 0.547 | 0.116 | 0.923 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | C-Section | 0.035 | 0.022 | 3917 | 0.546 | 0.107 | 0.370 | -0.030 | 0.021 | 4196 | 0.546 | 0.160 | 0.350 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | Gestational Age | 0.034 | 0.030 | 3917 | 0.546 | 0.260 | 0.431 | 0.026 | 0.029 | 4196 | 0.546 | 0.368 | 0.538 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | Birth weight | -0.031 | 0.029 | 3917 | 0.546 | 0.289 | 0.562 | 0.037 | 0.029 | 4196 | 0.546 | 0.202 | 0.443 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | Tobacco use | 0.038 | 0.033 | 3917 | 0.546 | 0.247 | 0.919 | 0.035 | 0.033 | 4196 | 0.546 | 0.278 | 0.660 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | Alcohol use | 0.064 | 0.024 | 3917 | 0.546 | 0.007 | 0.120 | -0.041 | 0.024 | 4196 | 0.547 | 0.086 | 0.530 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | Marijuana use | -0.007 | 0.047 | 3917 | 0.546 | 0.886 | 0.978 | -0.024 | 0.047 | 4196 | 0.546 | 0.608 | 0.795 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | Pregnancy complications | 0.021 | 0.021 | 3917 | 0.546 | 0.315 | 0.665 | 0.008 | 0.021 | 4196 | 0.546 | 0.693 | 0.921 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | Birth complications | 0.027 | 0.024 | 3917 | 0.546 | 0.258 | 0.800 | 0.004 | 0.022 | 4196 | 0.546 | 0.873 | 0.972 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | Unplanned pregnancy | -0.009 | 0.030 | 3917 | 0.343 | 0.769 | 0.970 | 0.023 | 0.029 | 4196 | 0.357 | 0.443 | 0.923 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | C-Section | -0.003 | 0.027 | 3917 | 0.343 | 0.922 | 0.922 | -0.004 | 0.026 | 4196 | 0.357 | 0.876 | 0.951 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | Gestational Age | -0.014 | 0.038 | 3917 | 0.343 | 0.721 | 0.804 | -0.050 | 0.035 | 4196 | 0.357 | 0.152 | 0.356 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | Birth weight | -0.115 | 0.037 | 3917 | 0.344 | 0.002 | 0.019 | -0.028 | 0.036 | 4196 | 0.357 | 0.430 | 0.612 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | Tobacco use | -0.012 | 0.041 | 3917 | 0.343 | 0.765 | 0.973 | -0.026 | 0.040 | 4196 | 0.357 | 0.507 | 0.821 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | Alcohol use | -0.033 | 0.030 | 3917 | 0.343 | 0.274 | 0.600 | -0.030 | 0.029 | 4196 | 0.357 | 0.304 | 0.889 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | Marijuana use | -0.004 | 0.058 | 3917 | 0.343 | 0.946 | 0.978 | -0.037 | 0.057 | 4196 | 0.357 | 0.514 | 0.743 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | Pregnancy complications | 0.004 | 0.026 | 3917 | 0.343 | 0.868 | 0.993 | 0.000 | 0.026 | 4196 | 0.357 | 0.990 | 0.990 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | Birth complications | -0.021 | 0.030 | 3917 | 0.343 | 0.468 | 0.800 | 0.009 | 0.027 | 4196 | 0.357 | 0.741 | 0.972 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | Unplanned pregnancy | 0.017 | 0.027 | 3917 | 0.488 | 0.531 | 0.970 | -0.002 | 0.026 | 4196 | 0.487 | 0.931 | 0.962 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | C-Section | 0.023 | 0.024 | 3917 | 0.488 | 0.344 | 0.612 | 0.002 | 0.023 | 4196 | 0.487 | 0.925 | 0.982 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | Gestational Age | 0.053 | 0.033 | 3917 | 0.487 | 0.108 | 0.255 | 0.001 | 0.031 | 4196 | 0.487 | 0.977 | 0.977 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | Birth weight | 0.099 | 0.032 | 3917 | 0.489 | 0.002 | 0.020 | 0.030 | 0.032 | 4196 | 0.488 | 0.347 | 0.576 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | Tobacco use | 0.035 | 0.036 | 3917 | 0.488 | 0.331 | 0.919 | -0.022 | 0.035 | 4196 | 0.487 | 0.534 | 0.825 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | Alcohol use | 0.001 | 0.026 | 3917 | 0.487 | 0.971 | 0.995 | 0.027 | 0.026 | 4196 | 0.488 | 0.287 | 0.889 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | Marijuana use | -0.008 | 0.051 | 3917 | 0.488 | 0.870 | 0.978 | -0.087 | 0.051 | 4196 | 0.488 | 0.084 | 0.538 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | Pregnancy complications | 0.026 | 0.023 | 3917 | 0.488 | 0.264 | 0.665 | 0.014 | 0.023 | 4196 | 0.487 | 0.526 | 0.921 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | Birth complications | 0.021 | 0.026 | 3917 | 0.488 | 0.412 | 0.800 | 0.021 | 0.024 | 4196 | 0.488 | 0.393 | 0.972 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | Unplanned pregnancy | 0.005 | 0.023 | 3917 | 0.603 | 0.836 | 0.970 | -0.028 | 0.023 | 4196 | 0.601 | 0.224 | 0.923 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | C-Section | 0.012 | 0.021 | 3917 | 0.603 | 0.564 | 0.816 | 0.022 | 0.020 | 4196 | 0.601 | 0.279 | 0.499 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | Gestational Age | 0.072 | 0.029 | 3917 | 0.604 | 0.014 | 0.081 | 0.068 | 0.027 | 4196 | 0.602 | 0.013 | 0.088 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | Birth weight | 0.061 | 0.028 | 3917 | 0.604 | 0.030 | 0.113 | 0.052 | 0.028 | 4196 | 0.601 | 0.065 | 0.250 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | Tobacco use | -0.035 | 0.032 | 3917 | 0.603 | 0.272 | 0.919 | 0.002 | 0.031 | 4196 | 0.601 | 0.949 | 0.985 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | Alcohol use | -0.008 | 0.023 | 3917 | 0.603 | 0.740 | 0.913 | 0.003 | 0.023 | 4196 | 0.601 | 0.907 | 0.993 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | Marijuana use | 0.027 | 0.045 | 3917 | 0.603 | 0.555 | 0.927 | 0.037 | 0.045 | 4196 | 0.601 | 0.408 | 0.737 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | Pregnancy complications | 0.002 | 0.020 | 3917 | 0.603 | 0.918 | 0.993 | 0.009 | 0.020 | 4196 | 0.601 | 0.665 | 0.921 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | Birth complications | 0.026 | 0.023 | 3917 | 0.603 | 0.248 | 0.800 | 0.005 | 0.021 | 4196 | 0.601 | 0.823 | 0.972 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | Unplanned pregnancy | 0.016 | 0.027 | 3917 | 0.461 | 0.568 | 0.970 | 0.008 | 0.027 | 4196 | 0.452 | 0.774 | 0.962 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | C-Section | 0.041 | 0.024 | 3917 | 0.462 | 0.091 | 0.347 | -0.019 | 0.024 | 4196 | 0.452 | 0.410 | 0.649 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | Gestational Age | 0.060 | 0.034 | 3917 | 0.462 | 0.078 | 0.221 | -0.093 | 0.032 | 4196 | 0.453 | 0.004 | 0.058 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | Birth weight | -0.027 | 0.033 | 3917 | 0.461 | 0.415 | 0.706 | 0.061 | 0.033 | 4196 | 0.452 | 0.062 | 0.250 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | Tobacco use | -0.010 | 0.037 | 3917 | 0.461 | 0.787 | 0.973 | 0.052 | 0.036 | 4196 | 0.453 | 0.153 | 0.471 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | Alcohol use | -0.015 | 0.027 | 3917 | 0.461 | 0.585 | 0.846 | 0.017 | 0.026 | 4196 | 0.452 | 0.516 | 0.949 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | Marijuana use | -0.004 | 0.052 | 3917 | 0.461 | 0.934 | 0.978 | -0.001 | 0.052 | 4196 | 0.452 | 0.978 | 0.978 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | Pregnancy complications | 0.030 | 0.024 | 3917 | 0.462 | 0.204 | 0.665 | -0.003 | 0.023 | 4196 | 0.452 | 0.903 | 0.985 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | Birth complications | 0.027 | 0.027 | 3917 | 0.461 | 0.316 | 0.800 | -0.021 | 0.025 | 4196 | 0.452 | 0.393 | 0.972 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | Unplanned pregnancy | 0.020 | 0.023 | 3917 | 0.595 | 0.388 | 0.970 | 0.010 | 0.023 | 4196 | 0.598 | 0.647 | 0.923 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | C-Section | -0.024 | 0.021 | 3917 | 0.595 | 0.250 | 0.522 | -0.006 | 0.020 | 4196 | 0.598 | 0.762 | 0.881 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | Gestational Age | -0.004 | 0.029 | 3917 | 0.595 | 0.883 | 0.923 | 0.005 | 0.027 | 4196 | 0.598 | 0.858 | 0.911 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | Birth weight | 0.007 | 0.028 | 3917 | 0.595 | 0.798 | 0.889 | -0.012 | 0.028 | 4196 | 0.598 | 0.668 | 0.745 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | Tobacco use | 0.004 | 0.032 | 3917 | 0.595 | 0.903 | 0.979 | -0.055 | 0.031 | 4196 | 0.598 | 0.076 | 0.396 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | Alcohol use | -0.005 | 0.023 | 3917 | 0.595 | 0.818 | 0.927 | -0.019 | 0.022 | 4196 | 0.598 | 0.398 | 0.889 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | Marijuana use | -0.013 | 0.045 | 3917 | 0.595 | 0.777 | 0.978 | 0.011 | 0.044 | 4196 | 0.598 | 0.801 | 0.908 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | Pregnancy complications | -0.007 | 0.020 | 3917 | 0.595 | 0.745 | 0.965 | 0.030 | 0.020 | 4196 | 0.598 | 0.133 | 0.861 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | Birth complications | 0.015 | 0.023 | 3917 | 0.595 | 0.506 | 0.800 | 0.002 | 0.021 | 4196 | 0.598 | 0.919 | 0.972 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | Unplanned pregnancy | 0.020 | 0.028 | 3917 | 0.415 | 0.484 | 0.970 | -0.016 | 0.029 | 4196 | 0.387 | 0.576 | 0.923 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | C-Section | -0.006 | 0.026 | 3917 | 0.415 | 0.810 | 0.889 | -0.037 | 0.025 | 4196 | 0.388 | 0.143 | 0.325 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | Gestational Age | -0.025 | 0.035 | 3917 | 0.415 | 0.488 | 0.673 | -0.089 | 0.034 | 4196 | 0.389 | 0.009 | 0.081 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | Birth weight | -0.033 | 0.034 | 3917 | 0.415 | 0.337 | 0.636 | -0.039 | 0.035 | 4196 | 0.388 | 0.267 | 0.502 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | Tobacco use | -0.066 | 0.039 | 3917 | 0.415 | 0.087 | 0.712 | -0.020 | 0.038 | 4196 | 0.388 | 0.612 | 0.868 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | Alcohol use | 0.031 | 0.028 | 3917 | 0.415 | 0.267 | 0.600 | 0.006 | 0.028 | 4196 | 0.388 | 0.843 | 0.993 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | Marijuana use | -0.041 | 0.055 | 3917 | 0.415 | 0.459 | 0.927 | 0.040 | 0.055 | 4196 | 0.388 | 0.470 | 0.737 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | Pregnancy complications | 0.017 | 0.025 | 3917 | 0.415 | 0.497 | 0.864 | 0.008 | 0.025 | 4196 | 0.388 | 0.740 | 0.921 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | Birth complications | -0.023 | 0.028 | 3917 | 0.415 | 0.398 | 0.800 | -0.017 | 0.026 | 4196 | 0.388 | 0.529 | 0.972 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | Unplanned pregnancy | 0.032 | 0.032 | 3917 | 0.273 | 0.303 | 0.970 | -0.019 | 0.030 | 4196 | 0.349 | 0.522 | 0.923 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | C-Section | 0.033 | 0.028 | 3917 | 0.274 | 0.246 | 0.522 | 0.103 | 0.026 | 4196 | 0.352 | 0.000 | 0.005 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | Gestational Age | 0.071 | 0.039 | 3917 | 0.275 | 0.070 | 0.217 | 0.032 | 0.035 | 4196 | 0.349 | 0.356 | 0.538 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | Birth weight | 0.103 | 0.038 | 3917 | 0.275 | 0.007 | 0.041 | -0.005 | 0.036 | 4196 | 0.349 | 0.881 | 0.908 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | Tobacco use | -0.032 | 0.043 | 3917 | 0.273 | 0.464 | 0.919 | 0.032 | 0.040 | 4196 | 0.349 | 0.418 | 0.806 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | Alcohol use | 0.001 | 0.031 | 3917 | 0.273 | 0.981 | 0.995 | 0.023 | 0.029 | 4196 | 0.349 | 0.435 | 0.889 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | Marijuana use | -0.047 | 0.061 | 3917 | 0.273 | 0.439 | 0.927 | -0.050 | 0.057 | 4196 | 0.349 | 0.386 | 0.737 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | Pregnancy complications | -0.016 | 0.028 | 3917 | 0.273 | 0.552 | 0.864 | -0.014 | 0.026 | 4196 | 0.348 | 0.591 | 0.921 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | Birth complications | -0.021 | 0.031 | 3917 | 0.273 | 0.503 | 0.800 | 0.057 | 0.027 | 4196 | 0.350 | 0.035 | 0.814 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | Unplanned pregnancy | 0.053 | 0.032 | 3917 | 0.217 | 0.099 | 0.970 | 0.004 | 0.032 | 4196 | 0.228 | 0.906 | 0.962 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | C-Section | 0.022 | 0.029 | 3917 | 0.217 | 0.454 | 0.736 | 0.034 | 0.028 | 4196 | 0.229 | 0.223 | 0.411 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | Gestational Age | 0.188 | 0.040 | 3917 | 0.224 | 0.000 | 0.000 | 0.073 | 0.038 | 4196 | 0.230 | 0.052 | 0.189 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | Birth weight | 0.057 | 0.039 | 3917 | 0.218 | 0.147 | 0.332 | 0.090 | 0.038 | 4196 | 0.230 | 0.019 | 0.141 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | Tobacco use | 0.007 | 0.044 | 3917 | 0.217 | 0.867 | 0.979 | -0.016 | 0.043 | 4196 | 0.228 | 0.702 | 0.904 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | Alcohol use | -0.010 | 0.032 | 3917 | 0.217 | 0.746 | 0.913 | 0.056 | 0.031 | 4196 | 0.228 | 0.073 | 0.509 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | Marijuana use | -0.024 | 0.062 | 3917 | 0.217 | 0.697 | 0.948 | -0.047 | 0.061 | 4196 | 0.228 | 0.446 | 0.737 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | Pregnancy complications | 0.026 | 0.028 | 3917 | 0.217 | 0.361 | 0.703 | 0.055 | 0.027 | 4196 | 0.229 | 0.044 | 0.594 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | Birth complications | 0.036 | 0.031 | 3917 | 0.218 | 0.251 | 0.800 | 0.042 | 0.029 | 4196 | 0.229 | 0.146 | 0.814 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | Unplanned pregnancy | -0.012 | 0.030 | 3917 | 0.350 | 0.677 | 0.970 | -0.043 | 0.030 | 4196 | 0.324 | 0.153 | 0.923 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | C-Section | -0.040 | 0.027 | 3917 | 0.350 | 0.141 | 0.375 | 0.002 | 0.026 | 4196 | 0.324 | 0.954 | 0.982 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | Gestational Age | -0.049 | 0.038 | 3917 | 0.350 | 0.190 | 0.341 | -0.017 | 0.036 | 4196 | 0.324 | 0.644 | 0.742 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | Birth weight | 0.025 | 0.036 | 3917 | 0.350 | 0.492 | 0.712 | -0.052 | 0.036 | 4196 | 0.324 | 0.152 | 0.398 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | Tobacco use | 0.001 | 0.041 | 3917 | 0.350 | 0.990 | 0.990 | 0.005 | 0.040 | 4196 | 0.324 | 0.909 | 0.970 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | Alcohol use | 0.082 | 0.029 | 3917 | 0.351 | 0.005 | 0.120 | 0.001 | 0.029 | 4196 | 0.324 | 0.978 | 0.993 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | Marijuana use | -0.007 | 0.058 | 3917 | 0.350 | 0.909 | 0.978 | -0.018 | 0.058 | 4196 | 0.324 | 0.753 | 0.883 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | Pregnancy complications | -0.026 | 0.026 | 3917 | 0.350 | 0.323 | 0.665 | -0.013 | 0.026 | 4196 | 0.324 | 0.628 | 0.921 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | Birth complications | 0.011 | 0.029 | 3917 | 0.350 | 0.718 | 0.921 | 0.033 | 0.028 | 4196 | 0.324 | 0.240 | 0.814 |
| smri_area_cdk_insularh | Cortical area rh-insula | Unplanned pregnancy | 0.054 | 0.029 | 3917 | 0.396 | 0.061 | 0.970 | 0.006 | 0.029 | 4196 | 0.361 | 0.832 | 0.962 |
| smri_area_cdk_insularh | Cortical area rh-insula | C-Section | -0.072 | 0.026 | 3917 | 0.397 | 0.005 | 0.079 | -0.025 | 0.025 | 4196 | 0.361 | 0.327 | 0.555 |
| smri_area_cdk_insularh | Cortical area rh-insula | Gestational Age | -0.066 | 0.036 | 3917 | 0.396 | 0.067 | 0.217 | 0.033 | 0.035 | 4196 | 0.361 | 0.345 | 0.538 |
| smri_area_cdk_insularh | Cortical area rh-insula | Birth weight | -0.091 | 0.035 | 3917 | 0.396 | 0.009 | 0.043 | -0.097 | 0.035 | 4196 | 0.362 | 0.006 | 0.059 |
| smri_area_cdk_insularh | Cortical area rh-insula | Tobacco use | 0.028 | 0.039 | 3917 | 0.395 | 0.470 | 0.919 | 0.048 | 0.039 | 4196 | 0.361 | 0.224 | 0.586 |
| smri_area_cdk_insularh | Cortical area rh-insula | Alcohol use | -0.029 | 0.028 | 3917 | 0.395 | 0.307 | 0.605 | -0.001 | 0.029 | 4196 | 0.361 | 0.970 | 0.993 |
| smri_area_cdk_insularh | Cortical area rh-insula | Marijuana use | 0.010 | 0.055 | 3917 | 0.395 | 0.862 | 0.978 | 0.085 | 0.056 | 4196 | 0.362 | 0.133 | 0.601 |
| smri_area_cdk_insularh | Cortical area rh-insula | Pregnancy complications | -0.057 | 0.025 | 3917 | 0.396 | 0.023 | 0.581 | 0.006 | 0.025 | 4196 | 0.361 | 0.805 | 0.928 |
| smri_area_cdk_insularh | Cortical area rh-insula | Birth complications | -0.001 | 0.028 | 3917 | 0.395 | 0.971 | 0.985 | -0.049 | 0.027 | 4196 | 0.361 | 0.067 | 0.814 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | Unplanned pregnancy | 0.020 | 0.037 | 3917 | 0.005 | 0.584 | 0.982 | -0.048 | 0.037 | 4196 | 0.002 | 0.187 | 0.691 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | C-Section | -0.091 | 0.034 | 3917 | 0.007 | 0.007 | 0.077 | -0.034 | 0.032 | 4196 | 0.002 | 0.284 | 0.654 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | Gestational Age | -0.138 | 0.047 | 3917 | 0.007 | 0.003 | 0.013 | -0.113 | 0.044 | 4196 | 0.004 | 0.010 | 0.027 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | Birth weight | -0.090 | 0.045 | 3917 | 0.005 | 0.045 | 0.123 | -0.051 | 0.044 | 4196 | 0.002 | 0.251 | 0.387 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | Tobacco use | 0.032 | 0.051 | 3917 | 0.005 | 0.524 | 0.794 | 0.043 | 0.049 | 4196 | 0.002 | 0.386 | 0.752 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | Alcohol use | 0.036 | 0.037 | 3917 | 0.005 | 0.323 | 0.720 | 0.005 | 0.036 | 4196 | 0.002 | 0.892 | 0.965 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | Marijuana use | 0.026 | 0.072 | 3917 | 0.005 | 0.712 | 0.998 | 0.064 | 0.071 | 4196 | 0.002 | 0.370 | 0.882 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | Pregnancy complications | -0.011 | 0.032 | 3917 | 0.005 | 0.732 | 0.874 | -0.001 | 0.032 | 4196 | 0.001 | 0.979 | 0.993 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | Birth complications | -0.043 | 0.036 | 3917 | 0.005 | 0.236 | 0.715 | -0.010 | 0.034 | 4196 | 0.002 | 0.771 | 0.934 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | Unplanned pregnancy | 0.001 | 0.037 | 3917 | 0.032 | 0.985 | 0.985 | 0.025 | 0.036 | 4196 | 0.024 | 0.488 | 0.811 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | C-Section | 0.008 | 0.033 | 3917 | 0.032 | 0.812 | 0.872 | -0.003 | 0.032 | 4196 | 0.024 | 0.923 | 0.983 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | Gestational Age | 0.030 | 0.046 | 3917 | 0.032 | 0.513 | 0.635 | -0.009 | 0.043 | 4196 | 0.024 | 0.826 | 0.892 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | Birth weight | 0.133 | 0.044 | 3917 | 0.033 | 0.003 | 0.011 | 0.112 | 0.043 | 4196 | 0.026 | 0.010 | 0.030 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | Tobacco use | -0.033 | 0.050 | 3917 | 0.032 | 0.518 | 0.794 | -0.020 | 0.049 | 4196 | 0.024 | 0.685 | 0.914 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | Alcohol use | -0.088 | 0.036 | 3917 | 0.033 | 0.015 | 0.276 | 0.014 | 0.035 | 4196 | 0.024 | 0.695 | 0.923 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | Marijuana use | -0.182 | 0.071 | 3917 | 0.033 | 0.010 | 0.564 | 0.030 | 0.070 | 4196 | 0.024 | 0.670 | 0.972 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | Pregnancy complications | 0.004 | 0.032 | 3917 | 0.032 | 0.905 | 0.928 | -0.019 | 0.031 | 4196 | 0.024 | 0.544 | 0.824 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | Birth complications | -0.051 | 0.036 | 3917 | 0.032 | 0.159 | 0.686 | -0.035 | 0.033 | 4196 | 0.024 | 0.287 | 0.803 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | Unplanned pregnancy | 0.004 | 0.037 | 3917 | 0.009 | 0.913 | 0.982 | 0.059 | 0.037 | 4196 | 0.008 | 0.106 | 0.691 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | C-Section | 0.030 | 0.034 | 3917 | 0.010 | 0.374 | 0.605 | -0.052 | 0.032 | 4196 | 0.008 | 0.105 | 0.356 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | Gestational Age | -0.009 | 0.047 | 3917 | 0.009 | 0.843 | 0.891 | 0.023 | 0.044 | 4196 | 0.008 | 0.600 | 0.716 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | Birth weight | -0.009 | 0.045 | 3917 | 0.009 | 0.840 | 0.907 | -0.012 | 0.044 | 4196 | 0.008 | 0.792 | 0.816 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | Tobacco use | -0.106 | 0.051 | 3917 | 0.010 | 0.038 | 0.200 | 0.030 | 0.049 | 4196 | 0.008 | 0.546 | 0.824 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | Alcohol use | -0.058 | 0.037 | 3917 | 0.010 | 0.110 | 0.560 | 0.014 | 0.036 | 4196 | 0.008 | 0.687 | 0.923 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | Marijuana use | -0.068 | 0.072 | 3917 | 0.010 | 0.342 | 0.830 | -0.081 | 0.071 | 4196 | 0.008 | 0.254 | 0.882 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | Pregnancy complications | -0.005 | 0.032 | 3917 | 0.009 | 0.878 | 0.926 | 0.018 | 0.032 | 4196 | 0.008 | 0.579 | 0.824 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | Birth complications | -0.027 | 0.036 | 3917 | 0.009 | 0.466 | 0.715 | 0.014 | 0.034 | 4196 | 0.008 | 0.668 | 0.920 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | Unplanned pregnancy | -0.041 | 0.036 | 3917 | 0.012 | 0.259 | 0.839 | 0.042 | 0.036 | 4196 | 0.010 | 0.243 | 0.720 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | C-Section | 0.023 | 0.033 | 3917 | 0.012 | 0.480 | 0.652 | 0.012 | 0.032 | 4196 | 0.010 | 0.695 | 0.826 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | Gestational Age | 0.121 | 0.046 | 3917 | 0.014 | 0.008 | 0.023 | 0.024 | 0.043 | 4196 | 0.010 | 0.577 | 0.713 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | Birth weight | -0.054 | 0.044 | 3917 | 0.012 | 0.220 | 0.375 | 0.035 | 0.043 | 4196 | 0.010 | 0.418 | 0.499 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | Tobacco use | -0.070 | 0.050 | 3917 | 0.012 | 0.161 | 0.497 | -0.002 | 0.049 | 4196 | 0.010 | 0.968 | 0.985 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | Alcohol use | -0.001 | 0.036 | 3917 | 0.012 | 0.970 | 0.979 | 0.053 | 0.035 | 4196 | 0.010 | 0.132 | 0.598 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | Marijuana use | 0.006 | 0.070 | 3917 | 0.012 | 0.935 | 0.998 | -0.094 | 0.070 | 4196 | 0.011 | 0.178 | 0.882 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | Pregnancy complications | 0.061 | 0.032 | 3917 | 0.013 | 0.053 | 0.398 | 0.017 | 0.031 | 4196 | 0.010 | 0.593 | 0.824 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | Birth complications | 0.032 | 0.035 | 3917 | 0.012 | 0.365 | 0.715 | -0.023 | 0.033 | 4196 | 0.010 | 0.480 | 0.920 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | Unplanned pregnancy | 0.074 | 0.037 | 3917 | 0.004 | 0.044 | 0.668 | -0.044 | 0.036 | 4196 | 0.004 | 0.220 | 0.714 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | C-Section | -0.084 | 0.033 | 3917 | 0.006 | 0.012 | 0.090 | -0.039 | 0.032 | 4196 | 0.004 | 0.220 | 0.642 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | Gestational Age | -0.177 | 0.046 | 3917 | 0.008 | 0.000 | 0.001 | -0.111 | 0.043 | 4196 | 0.005 | 0.010 | 0.028 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | Birth weight | -0.173 | 0.044 | 3917 | 0.007 | 0.000 | 0.001 | -0.100 | 0.044 | 4196 | 0.005 | 0.022 | 0.055 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | Tobacco use | 0.036 | 0.050 | 3917 | 0.003 | 0.469 | 0.794 | -0.009 | 0.049 | 4196 | 0.003 | 0.860 | 0.985 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | Alcohol use | -0.012 | 0.036 | 3917 | 0.003 | 0.748 | 0.862 | 0.008 | 0.035 | 4196 | 0.004 | 0.815 | 0.956 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | Marijuana use | 0.118 | 0.071 | 3917 | 0.004 | 0.097 | 0.825 | -0.206 | 0.070 | 4196 | 0.005 | 0.003 | 0.226 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | Pregnancy complications | -0.072 | 0.032 | 3917 | 0.005 | 0.026 | 0.252 | -0.070 | 0.031 | 4196 | 0.005 | 0.026 | 0.250 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | Birth complications | -0.001 | 0.036 | 3917 | 0.003 | 0.970 | 0.996 | -0.042 | 0.033 | 4196 | 0.004 | 0.212 | 0.757 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | Unplanned pregnancy | -0.031 | 0.036 | 3917 | 0.039 | 0.397 | 0.948 | 0.071 | 0.036 | 4196 | 0.044 | 0.044 | 0.580 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | C-Section | 0.147 | 0.033 | 3917 | 0.045 | 0.000 | 0.000 | 0.094 | 0.031 | 4196 | 0.046 | 0.003 | 0.035 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | Gestational Age | 0.107 | 0.046 | 3917 | 0.041 | 0.019 | 0.048 | 0.132 | 0.042 | 4196 | 0.046 | 0.002 | 0.007 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | Birth weight | 0.065 | 0.044 | 3917 | 0.040 | 0.135 | 0.262 | -0.038 | 0.043 | 4196 | 0.044 | 0.378 | 0.484 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | Tobacco use | 0.015 | 0.050 | 3917 | 0.039 | 0.755 | 0.899 | -0.006 | 0.048 | 4196 | 0.044 | 0.892 | 0.985 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | Alcohol use | 0.005 | 0.036 | 3917 | 0.039 | 0.896 | 0.949 | 0.005 | 0.035 | 4196 | 0.044 | 0.882 | 0.965 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | Marijuana use | 0.000 | 0.070 | 3917 | 0.039 | 0.998 | 0.998 | 0.106 | 0.069 | 4196 | 0.044 | 0.124 | 0.882 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | Pregnancy complications | 0.071 | 0.032 | 3917 | 0.041 | 0.026 | 0.252 | 0.069 | 0.031 | 4196 | 0.045 | 0.024 | 0.250 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | Birth complications | -0.006 | 0.035 | 3917 | 0.039 | 0.855 | 0.976 | 0.060 | 0.033 | 4196 | 0.045 | 0.069 | 0.470 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | Unplanned pregnancy | -0.022 | 0.037 | 3917 | 0.034 | 0.541 | 0.982 | 0.019 | 0.036 | 4196 | 0.030 | 0.608 | 0.875 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | C-Section | 0.047 | 0.033 | 3917 | 0.034 | 0.159 | 0.401 | -0.031 | 0.032 | 4196 | 0.030 | 0.335 | 0.657 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | Gestational Age | 0.107 | 0.046 | 3917 | 0.035 | 0.020 | 0.048 | -0.001 | 0.043 | 4196 | 0.030 | 0.980 | 0.982 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | Birth weight | 0.051 | 0.044 | 3917 | 0.034 | 0.254 | 0.421 | 0.075 | 0.044 | 4196 | 0.031 | 0.086 | 0.172 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | Tobacco use | 0.005 | 0.050 | 3917 | 0.034 | 0.928 | 0.942 | 0.101 | 0.049 | 4196 | 0.031 | 0.038 | 0.200 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | Alcohol use | -0.045 | 0.036 | 3917 | 0.034 | 0.209 | 0.633 | 0.032 | 0.035 | 4196 | 0.030 | 0.369 | 0.918 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | Marijuana use | -0.029 | 0.071 | 3917 | 0.034 | 0.685 | 0.998 | -0.023 | 0.070 | 4196 | 0.030 | 0.747 | 0.972 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | Pregnancy complications | -0.026 | 0.032 | 3917 | 0.034 | 0.415 | 0.830 | 0.005 | 0.031 | 4196 | 0.030 | 0.874 | 0.928 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | Birth complications | 0.044 | 0.036 | 3917 | 0.034 | 0.222 | 0.715 | 0.078 | 0.033 | 4196 | 0.031 | 0.018 | 0.314 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | Unplanned pregnancy | 0.012 | 0.037 | 3917 | 0.006 | 0.737 | 0.982 | -0.034 | 0.037 | 4196 | 0.001 | 0.360 | 0.790 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | C-Section | -0.087 | 0.033 | 3917 | 0.008 | 0.009 | 0.081 | -0.075 | 0.032 | 4196 | 0.002 | 0.020 | 0.125 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | Gestational Age | -0.171 | 0.046 | 3917 | 0.009 | 0.000 | 0.002 | -0.203 | 0.044 | 4196 | 0.006 | 0.000 | 0.000 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | Birth weight | -0.146 | 0.044 | 3917 | 0.009 | 0.001 | 0.005 | -0.120 | 0.044 | 4196 | 0.003 | 0.007 | 0.022 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | Tobacco use | 0.050 | 0.051 | 3917 | 0.006 | 0.323 | 0.757 | -0.040 | 0.049 | 4196 | 0.001 | 0.422 | 0.756 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | Alcohol use | 0.018 | 0.036 | 3917 | 0.006 | 0.617 | 0.803 | 0.000 | 0.036 | 4196 | 0.001 | 0.995 | 0.995 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | Marijuana use | 0.042 | 0.071 | 3917 | 0.006 | 0.557 | 0.992 | 0.025 | 0.071 | 4196 | 0.001 | 0.721 | 0.972 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | Pregnancy complications | -0.069 | 0.032 | 3917 | 0.008 | 0.034 | 0.287 | -0.023 | 0.032 | 4196 | 0.001 | 0.472 | 0.797 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | Birth complications | 0.050 | 0.036 | 3917 | 0.006 | 0.168 | 0.686 | -0.048 | 0.034 | 4196 | 0.002 | 0.155 | 0.589 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | Unplanned pregnancy | 0.010 | 0.036 | 3917 | 0.004 | 0.791 | 0.982 | 0.095 | 0.036 | 4196 | 0.001 | 0.008 | 0.548 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | C-Section | 0.092 | 0.033 | 3917 | 0.007 | 0.005 | 0.063 | 0.092 | 0.031 | 4196 | 0.003 | 0.004 | 0.035 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | Gestational Age | 0.122 | 0.045 | 3917 | 0.008 | 0.007 | 0.021 | 0.049 | 0.043 | 4196 | 0.001 | 0.253 | 0.395 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | Birth weight | 0.032 | 0.043 | 3917 | 0.005 | 0.457 | 0.632 | 0.094 | 0.043 | 4196 | 0.002 | 0.029 | 0.068 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | Tobacco use | -0.086 | 0.049 | 3917 | 0.005 | 0.080 | 0.341 | -0.047 | 0.048 | 4196 | 0.001 | 0.330 | 0.736 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | Alcohol use | -0.044 | 0.035 | 3917 | 0.005 | 0.214 | 0.633 | -0.017 | 0.035 | 4196 | 0.000 | 0.629 | 0.923 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | Marijuana use | -0.011 | 0.070 | 3917 | 0.004 | 0.874 | 0.998 | 0.016 | 0.069 | 4196 | 0.000 | 0.820 | 0.999 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | Pregnancy complications | 0.034 | 0.031 | 3917 | 0.005 | 0.287 | 0.773 | 0.031 | 0.031 | 4196 | 0.001 | 0.324 | 0.742 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | Birth complications | 0.059 | 0.035 | 3917 | 0.006 | 0.093 | 0.686 | -0.030 | 0.033 | 4196 | 0.000 | 0.358 | 0.847 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | Unplanned pregnancy | 0.031 | 0.037 | 3917 | 0.014 | 0.394 | 0.948 | 0.022 | 0.036 | 4196 | 0.016 | 0.534 | 0.811 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | C-Section | 0.001 | 0.033 | 3917 | 0.014 | 0.965 | 0.993 | 0.026 | 0.032 | 4196 | 0.016 | 0.412 | 0.676 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | Gestational Age | -0.090 | 0.046 | 3917 | 0.015 | 0.053 | 0.102 | 0.026 | 0.043 | 4196 | 0.016 | 0.549 | 0.699 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | Birth weight | 0.032 | 0.044 | 3917 | 0.014 | 0.474 | 0.632 | 0.041 | 0.044 | 4196 | 0.016 | 0.342 | 0.473 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | Tobacco use | 0.112 | 0.050 | 3917 | 0.016 | 0.027 | 0.184 | 0.002 | 0.049 | 4196 | 0.016 | 0.961 | 0.985 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | Alcohol use | 0.079 | 0.036 | 3917 | 0.016 | 0.028 | 0.276 | -0.010 | 0.035 | 4196 | 0.016 | 0.769 | 0.923 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | Marijuana use | 0.001 | 0.071 | 3917 | 0.014 | 0.992 | 0.998 | -0.006 | 0.070 | 4196 | 0.016 | 0.931 | 0.999 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | Pregnancy complications | 0.012 | 0.032 | 3917 | 0.014 | 0.713 | 0.874 | 0.021 | 0.031 | 4196 | 0.016 | 0.496 | 0.804 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | Birth complications | 0.024 | 0.036 | 3917 | 0.014 | 0.505 | 0.715 | -0.040 | 0.033 | 4196 | 0.016 | 0.225 | 0.765 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | Unplanned pregnancy | 0.052 | 0.037 | 3917 | 0.020 | 0.160 | 0.723 | -0.003 | 0.036 | 4196 | 0.017 | 0.929 | 0.992 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | C-Section | 0.079 | 0.033 | 3917 | 0.021 | 0.017 | 0.118 | 0.101 | 0.032 | 4196 | 0.019 | 0.001 | 0.035 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | Gestational Age | -0.110 | 0.046 | 3917 | 0.021 | 0.017 | 0.045 | -0.098 | 0.043 | 4196 | 0.017 | 0.023 | 0.048 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | Birth weight | -0.036 | 0.044 | 3917 | 0.020 | 0.414 | 0.589 | 0.040 | 0.043 | 4196 | 0.017 | 0.351 | 0.473 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | Tobacco use | 0.037 | 0.050 | 3917 | 0.020 | 0.463 | 0.794 | -0.070 | 0.049 | 4196 | 0.017 | 0.150 | 0.475 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | Alcohol use | -0.076 | 0.036 | 3917 | 0.020 | 0.036 | 0.306 | -0.030 | 0.035 | 4196 | 0.017 | 0.389 | 0.918 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | Marijuana use | 0.063 | 0.071 | 3917 | 0.020 | 0.373 | 0.845 | -0.013 | 0.070 | 4196 | 0.017 | 0.855 | 0.999 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | Pregnancy complications | 0.035 | 0.032 | 3917 | 0.020 | 0.273 | 0.773 | 0.006 | 0.031 | 4196 | 0.017 | 0.846 | 0.928 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | Birth complications | -0.026 | 0.036 | 3917 | 0.020 | 0.471 | 0.715 | -0.022 | 0.033 | 4196 | 0.017 | 0.511 | 0.920 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | Unplanned pregnancy | -0.034 | 0.036 | 3917 | 0.000 | 0.352 | 0.939 | 0.040 | 0.036 | 4196 | 0.006 | 0.269 | 0.751 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | C-Section | 0.027 | 0.033 | 3917 | 0.000 | 0.408 | 0.634 | 0.036 | 0.031 | 4196 | 0.006 | 0.255 | 0.642 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | Gestational Age | 0.065 | 0.046 | 3917 | 0.001 | 0.156 | 0.253 | -0.004 | 0.043 | 4196 | 0.006 | 0.930 | 0.973 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | Birth weight | 0.198 | 0.044 | 3917 | 0.006 | 0.000 | 0.000 | 0.120 | 0.043 | 4196 | 0.008 | 0.006 | 0.020 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | Tobacco use | 0.031 | 0.050 | 3917 | 0.000 | 0.526 | 0.794 | 0.137 | 0.048 | 4196 | 0.007 | 0.005 | 0.045 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | Alcohol use | 0.018 | 0.036 | 3917 | 0.000 | 0.605 | 0.803 | 0.065 | 0.035 | 4196 | 0.006 | 0.064 | 0.456 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | Marijuana use | -0.067 | 0.070 | 3917 | 0.000 | 0.338 | 0.830 | 0.021 | 0.069 | 4196 | 0.006 | 0.763 | 0.972 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | Pregnancy complications | 0.043 | 0.032 | 3917 | 0.001 | 0.174 | 0.717 | -0.006 | 0.031 | 4196 | 0.006 | 0.848 | 0.928 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | Birth complications | -0.056 | 0.035 | 3917 | 0.000 | 0.117 | 0.686 | 0.027 | 0.033 | 4196 | 0.006 | 0.420 | 0.913 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | Unplanned pregnancy | 0.020 | 0.036 | 3917 | 0.031 | 0.578 | 0.982 | -0.054 | 0.036 | 4196 | 0.011 | 0.129 | 0.691 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | C-Section | -0.040 | 0.033 | 3917 | 0.032 | 0.223 | 0.433 | -0.025 | 0.031 | 4196 | 0.010 | 0.428 | 0.676 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | Gestational Age | -0.104 | 0.045 | 3917 | 0.033 | 0.021 | 0.048 | -0.220 | 0.043 | 4196 | 0.017 | 0.000 | 0.000 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | Birth weight | -0.158 | 0.043 | 3917 | 0.035 | 0.000 | 0.002 | -0.192 | 0.043 | 4196 | 0.016 | 0.000 | 0.000 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | Tobacco use | -0.029 | 0.049 | 3917 | 0.031 | 0.554 | 0.802 | 0.003 | 0.048 | 4196 | 0.010 | 0.947 | 0.985 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | Alcohol use | -0.017 | 0.035 | 3917 | 0.031 | 0.626 | 0.803 | 0.032 | 0.035 | 4196 | 0.010 | 0.361 | 0.918 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | Marijuana use | -0.064 | 0.070 | 3917 | 0.031 | 0.359 | 0.841 | -0.026 | 0.070 | 4196 | 0.010 | 0.708 | 0.972 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | Pregnancy complications | -0.012 | 0.031 | 3917 | 0.031 | 0.712 | 0.874 | -0.052 | 0.031 | 4196 | 0.011 | 0.098 | 0.440 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | Birth complications | -0.030 | 0.035 | 3917 | 0.031 | 0.387 | 0.715 | -0.054 | 0.033 | 4196 | 0.011 | 0.100 | 0.470 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | Unplanned pregnancy | 0.031 | 0.037 | 3917 | 0.011 | 0.409 | 0.948 | 0.023 | 0.036 | 4196 | 0.010 | 0.536 | 0.811 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | C-Section | 0.033 | 0.033 | 3917 | 0.011 | 0.319 | 0.538 | 0.019 | 0.032 | 4196 | 0.010 | 0.547 | 0.749 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | Gestational Age | 0.073 | 0.046 | 3917 | 0.011 | 0.115 | 0.196 | 0.139 | 0.043 | 4196 | 0.013 | 0.001 | 0.006 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | Birth weight | 0.179 | 0.045 | 3917 | 0.015 | 0.000 | 0.000 | 0.158 | 0.044 | 4196 | 0.013 | 0.000 | 0.002 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | Tobacco use | -0.102 | 0.051 | 3917 | 0.012 | 0.044 | 0.212 | -0.028 | 0.049 | 4196 | 0.009 | 0.570 | 0.824 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | Alcohol use | -0.023 | 0.036 | 3917 | 0.011 | 0.525 | 0.748 | -0.012 | 0.036 | 4196 | 0.009 | 0.746 | 0.923 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | Marijuana use | 0.012 | 0.071 | 3917 | 0.011 | 0.871 | 0.998 | -0.055 | 0.071 | 4196 | 0.010 | 0.439 | 0.882 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | Pregnancy complications | 0.011 | 0.032 | 3917 | 0.011 | 0.727 | 0.874 | 0.028 | 0.032 | 4196 | 0.010 | 0.375 | 0.751 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | Birth complications | -0.099 | 0.036 | 3917 | 0.013 | 0.006 | 0.410 | -0.017 | 0.034 | 4196 | 0.009 | 0.612 | 0.920 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | Unplanned pregnancy | 0.049 | 0.036 | 3917 | 0.025 | 0.181 | 0.723 | 0.000 | 0.035 | 4196 | 0.042 | 0.992 | 0.992 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | C-Section | -0.070 | 0.033 | 3917 | 0.025 | 0.033 | 0.161 | -0.030 | 0.031 | 4196 | 0.042 | 0.327 | 0.657 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | Gestational Age | -0.172 | 0.046 | 3917 | 0.026 | 0.000 | 0.001 | -0.014 | 0.042 | 4196 | 0.042 | 0.737 | 0.835 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | Birth weight | -0.040 | 0.044 | 3917 | 0.025 | 0.360 | 0.532 | -0.109 | 0.043 | 4196 | 0.044 | 0.011 | 0.031 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | Tobacco use | 0.056 | 0.050 | 3917 | 0.025 | 0.259 | 0.686 | 0.158 | 0.048 | 4196 | 0.044 | 0.001 | 0.016 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | Alcohol use | 0.059 | 0.036 | 3917 | 0.025 | 0.099 | 0.559 | 0.010 | 0.035 | 4196 | 0.042 | 0.774 | 0.923 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | Marijuana use | -0.090 | 0.070 | 3917 | 0.025 | 0.200 | 0.825 | 0.036 | 0.069 | 4196 | 0.042 | 0.601 | 0.972 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | Pregnancy complications | -0.027 | 0.032 | 3917 | 0.025 | 0.393 | 0.830 | -0.028 | 0.031 | 4196 | 0.042 | 0.360 | 0.742 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | Birth complications | -0.029 | 0.035 | 3917 | 0.025 | 0.415 | 0.715 | -0.012 | 0.033 | 4196 | 0.042 | 0.703 | 0.920 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | Unplanned pregnancy | 0.058 | 0.037 | 3917 | 0.009 | 0.118 | 0.671 | -0.047 | 0.036 | 4196 | 0.001 | 0.196 | 0.691 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | C-Section | 0.000 | 0.033 | 3917 | 0.008 | 0.996 | 0.996 | -0.003 | 0.032 | 4196 | 0.001 | 0.937 | 0.983 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | Gestational Age | -0.018 | 0.046 | 3917 | 0.008 | 0.693 | 0.826 | -0.053 | 0.043 | 4196 | 0.002 | 0.223 | 0.361 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | Birth weight | -0.015 | 0.044 | 3917 | 0.008 | 0.740 | 0.852 | -0.055 | 0.044 | 4196 | 0.002 | 0.209 | 0.330 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | Tobacco use | -0.023 | 0.050 | 3917 | 0.008 | 0.651 | 0.852 | -0.024 | 0.049 | 4196 | 0.001 | 0.619 | 0.859 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | Alcohol use | 0.028 | 0.036 | 3917 | 0.008 | 0.439 | 0.720 | -0.007 | 0.036 | 4196 | 0.001 | 0.853 | 0.965 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | Marijuana use | 0.123 | 0.071 | 3917 | 0.008 | 0.085 | 0.825 | -0.013 | 0.070 | 4196 | 0.001 | 0.852 | 0.999 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | Pregnancy complications | -0.022 | 0.032 | 3917 | 0.008 | 0.488 | 0.835 | -0.012 | 0.031 | 4196 | 0.001 | 0.715 | 0.838 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | Birth complications | 0.026 | 0.036 | 3917 | 0.008 | 0.479 | 0.715 | -0.008 | 0.033 | 4196 | 0.001 | 0.819 | 0.934 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | Unplanned pregnancy | -0.002 | 0.037 | 3917 | 0.006 | 0.967 | 0.982 | 0.011 | 0.037 | 4196 | -0.001 | 0.769 | 0.926 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | C-Section | -0.066 | 0.034 | 3917 | 0.007 | 0.051 | 0.203 | -0.033 | 0.032 | 4196 | -0.001 | 0.304 | 0.654 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | Gestational Age | -0.108 | 0.047 | 3917 | 0.007 | 0.021 | 0.048 | -0.026 | 0.044 | 4196 | -0.001 | 0.555 | 0.699 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | Birth weight | 0.058 | 0.045 | 3917 | 0.006 | 0.198 | 0.353 | -0.016 | 0.044 | 4196 | -0.001 | 0.712 | 0.768 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | Tobacco use | 0.031 | 0.051 | 3917 | 0.006 | 0.544 | 0.802 | -0.037 | 0.050 | 4196 | -0.001 | 0.455 | 0.773 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | Alcohol use | 0.056 | 0.037 | 3917 | 0.006 | 0.130 | 0.560 | -0.006 | 0.036 | 4196 | -0.001 | 0.866 | 0.965 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | Marijuana use | -0.010 | 0.072 | 3917 | 0.006 | 0.886 | 0.998 | -0.062 | 0.072 | 4196 | -0.001 | 0.382 | 0.882 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | Pregnancy complications | -0.022 | 0.033 | 3917 | 0.006 | 0.496 | 0.835 | -0.021 | 0.032 | 4196 | -0.001 | 0.518 | 0.819 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | Birth complications | -0.019 | 0.037 | 3917 | 0.006 | 0.609 | 0.766 | -0.022 | 0.034 | 4196 | -0.001 | 0.508 | 0.920 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | Unplanned pregnancy | -0.105 | 0.037 | 3917 | 0.024 | 0.004 | 0.143 | 0.007 | 0.036 | 4196 | 0.022 | 0.848 | 0.978 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | C-Section | 0.024 | 0.033 | 3917 | 0.023 | 0.463 | 0.642 | 0.094 | 0.032 | 4196 | 0.024 | 0.003 | 0.035 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | Gestational Age | 0.206 | 0.046 | 3917 | 0.028 | 0.000 | 0.000 | 0.141 | 0.043 | 4196 | 0.025 | 0.001 | 0.005 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | Birth weight | 0.030 | 0.044 | 3917 | 0.023 | 0.497 | 0.638 | -0.055 | 0.044 | 4196 | 0.022 | 0.207 | 0.330 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | Tobacco use | -0.051 | 0.050 | 3917 | 0.022 | 0.311 | 0.756 | 0.038 | 0.049 | 4196 | 0.022 | 0.436 | 0.761 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | Alcohol use | -0.042 | 0.036 | 3917 | 0.023 | 0.243 | 0.636 | 0.028 | 0.035 | 4196 | 0.022 | 0.424 | 0.918 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | Marijuana use | -0.004 | 0.071 | 3917 | 0.022 | 0.957 | 0.998 | 0.104 | 0.070 | 4196 | 0.023 | 0.138 | 0.882 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | Pregnancy complications | 0.003 | 0.032 | 3917 | 0.022 | 0.914 | 0.928 | -0.004 | 0.031 | 4196 | 0.022 | 0.887 | 0.928 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | Birth complications | 0.077 | 0.036 | 3917 | 0.024 | 0.032 | 0.607 | 0.014 | 0.033 | 4196 | 0.022 | 0.678 | 0.920 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | Unplanned pregnancy | 0.124 | 0.037 | 3917 | 0.017 | 0.001 | 0.057 | 0.014 | 0.036 | 4196 | 0.017 | 0.694 | 0.893 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | C-Section | 0.037 | 0.034 | 3917 | 0.014 | 0.268 | 0.481 | -0.002 | 0.032 | 4196 | 0.017 | 0.947 | 0.983 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | Gestational Age | -0.016 | 0.047 | 3917 | 0.014 | 0.731 | 0.843 | -0.039 | 0.043 | 4196 | 0.017 | 0.367 | 0.531 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | Birth weight | -0.090 | 0.045 | 3917 | 0.015 | 0.045 | 0.123 | 0.019 | 0.044 | 4196 | 0.017 | 0.670 | 0.735 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | Tobacco use | 0.002 | 0.051 | 3917 | 0.014 | 0.966 | 0.966 | -0.003 | 0.049 | 4196 | 0.017 | 0.959 | 0.985 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | Alcohol use | 0.004 | 0.037 | 3917 | 0.014 | 0.907 | 0.949 | 0.043 | 0.036 | 4196 | 0.018 | 0.228 | 0.817 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | Marijuana use | 0.014 | 0.072 | 3917 | 0.014 | 0.843 | 0.998 | -0.046 | 0.071 | 4196 | 0.017 | 0.520 | 0.930 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | Pregnancy complications | -0.050 | 0.032 | 3917 | 0.014 | 0.127 | 0.663 | 0.013 | 0.032 | 4196 | 0.017 | 0.692 | 0.825 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | Birth complications | 0.002 | 0.036 | 3917 | 0.014 | 0.951 | 0.996 | 0.031 | 0.034 | 4196 | 0.017 | 0.361 | 0.847 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | Unplanned pregnancy | 0.003 | 0.036 | 3917 | 0.049 | 0.931 | 0.982 | -0.015 | 0.035 | 4196 | 0.036 | 0.672 | 0.893 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | C-Section | -0.063 | 0.032 | 3917 | 0.050 | 0.050 | 0.203 | -0.036 | 0.031 | 4196 | 0.036 | 0.243 | 0.642 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | Gestational Age | -0.031 | 0.045 | 3917 | 0.049 | 0.485 | 0.611 | 0.052 | 0.042 | 4196 | 0.037 | 0.213 | 0.354 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | Birth weight | 0.053 | 0.043 | 3917 | 0.049 | 0.217 | 0.375 | 0.031 | 0.042 | 4196 | 0.036 | 0.457 | 0.535 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | Tobacco use | -0.061 | 0.049 | 3917 | 0.049 | 0.209 | 0.619 | -0.012 | 0.048 | 4196 | 0.036 | 0.800 | 0.985 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | Alcohol use | -0.031 | 0.035 | 3917 | 0.049 | 0.377 | 0.720 | 0.018 | 0.034 | 4196 | 0.036 | 0.606 | 0.923 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | Marijuana use | 0.114 | 0.069 | 3917 | 0.050 | 0.097 | 0.825 | 0.075 | 0.068 | 4196 | 0.036 | 0.272 | 0.882 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | Pregnancy complications | -0.021 | 0.031 | 3917 | 0.049 | 0.504 | 0.835 | -0.024 | 0.030 | 4196 | 0.036 | 0.428 | 0.786 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | Birth complications | 0.000 | 0.035 | 3917 | 0.049 | 0.997 | 0.997 | 0.025 | 0.032 | 4196 | 0.036 | 0.443 | 0.913 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | Unplanned pregnancy | -0.090 | 0.037 | 3917 | 0.019 | 0.015 | 0.344 | -0.037 | 0.036 | 4196 | 0.033 | 0.305 | 0.768 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | C-Section | -0.041 | 0.033 | 3917 | 0.018 | 0.218 | 0.433 | 0.033 | 0.032 | 4196 | 0.033 | 0.301 | 0.654 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | Gestational Age | 0.043 | 0.047 | 3917 | 0.018 | 0.358 | 0.478 | 0.058 | 0.043 | 4196 | 0.033 | 0.177 | 0.316 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | Birth weight | 0.042 | 0.045 | 3917 | 0.018 | 0.347 | 0.524 | 0.003 | 0.044 | 4196 | 0.033 | 0.949 | 0.949 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | Tobacco use | 0.043 | 0.051 | 3917 | 0.018 | 0.394 | 0.794 | -0.033 | 0.049 | 4196 | 0.033 | 0.495 | 0.807 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | Alcohol use | -0.013 | 0.036 | 3917 | 0.017 | 0.730 | 0.862 | -0.019 | 0.035 | 4196 | 0.033 | 0.589 | 0.923 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | Marijuana use | 0.097 | 0.072 | 3917 | 0.018 | 0.176 | 0.825 | -0.063 | 0.070 | 4196 | 0.033 | 0.369 | 0.882 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | Pregnancy complications | -0.046 | 0.032 | 3917 | 0.018 | 0.159 | 0.717 | 0.014 | 0.031 | 4196 | 0.033 | 0.646 | 0.824 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | Birth complications | 0.031 | 0.036 | 3917 | 0.018 | 0.388 | 0.715 | -0.006 | 0.033 | 4196 | 0.033 | 0.852 | 0.934 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | Unplanned pregnancy | 0.013 | 0.036 | 3917 | 0.034 | 0.725 | 0.982 | 0.039 | 0.036 | 4196 | 0.038 | 0.276 | 0.751 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | C-Section | 0.045 | 0.032 | 3917 | 0.035 | 0.167 | 0.405 | -0.053 | 0.031 | 4196 | 0.038 | 0.093 | 0.356 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | Gestational Age | 0.056 | 0.045 | 3917 | 0.036 | 0.209 | 0.323 | 0.198 | 0.042 | 4196 | 0.044 | 0.000 | 0.000 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | Birth weight | 0.198 | 0.043 | 3917 | 0.040 | 0.000 | 0.000 | 0.216 | 0.043 | 4196 | 0.044 | 0.000 | 0.000 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | Tobacco use | 0.058 | 0.049 | 3917 | 0.034 | 0.238 | 0.673 | 0.003 | 0.048 | 4196 | 0.038 | 0.943 | 0.985 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | Alcohol use | -0.029 | 0.035 | 3917 | 0.034 | 0.410 | 0.720 | 0.034 | 0.035 | 4196 | 0.038 | 0.329 | 0.918 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | Marijuana use | -0.116 | 0.069 | 3917 | 0.035 | 0.092 | 0.825 | 0.030 | 0.069 | 4196 | 0.038 | 0.668 | 0.972 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | Pregnancy complications | 0.036 | 0.031 | 3917 | 0.035 | 0.245 | 0.770 | 0.061 | 0.031 | 4196 | 0.039 | 0.049 | 0.348 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | Birth complications | 0.034 | 0.035 | 3917 | 0.035 | 0.333 | 0.715 | 0.029 | 0.033 | 4196 | 0.038 | 0.378 | 0.856 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | Unplanned pregnancy | 0.015 | 0.037 | 3917 | 0.000 | 0.678 | 0.982 | -0.074 | 0.036 | 4196 | 0.005 | 0.043 | 0.580 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | C-Section | 0.076 | 0.034 | 3917 | 0.001 | 0.025 | 0.140 | 0.096 | 0.032 | 4196 | 0.007 | 0.003 | 0.035 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | Gestational Age | 0.154 | 0.047 | 3917 | 0.003 | 0.001 | 0.005 | 0.155 | 0.043 | 4196 | 0.008 | 0.000 | 0.003 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | Birth weight | -0.018 | 0.045 | 3917 | 0.000 | 0.683 | 0.801 | 0.065 | 0.044 | 4196 | 0.005 | 0.136 | 0.250 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | Tobacco use | -0.006 | 0.051 | 3917 | 0.000 | 0.899 | 0.941 | 0.058 | 0.049 | 4196 | 0.005 | 0.237 | 0.662 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | Alcohol use | 0.012 | 0.037 | 3917 | 0.000 | 0.735 | 0.862 | -0.017 | 0.036 | 4196 | 0.004 | 0.640 | 0.923 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | Marijuana use | -0.009 | 0.072 | 3917 | 0.000 | 0.905 | 0.998 | 0.075 | 0.071 | 4196 | 0.005 | 0.288 | 0.882 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | Pregnancy complications | 0.078 | 0.033 | 3917 | 0.002 | 0.017 | 0.235 | 0.045 | 0.032 | 4196 | 0.005 | 0.157 | 0.484 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | Birth complications | 0.029 | 0.037 | 3917 | 0.000 | 0.425 | 0.715 | 0.069 | 0.034 | 4196 | 0.006 | 0.039 | 0.379 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | Unplanned pregnancy | -0.010 | 0.037 | 3917 | 0.006 | 0.795 | 0.982 | 0.070 | 0.036 | 4196 | 0.002 | 0.051 | 0.580 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | C-Section | -0.042 | 0.033 | 3917 | 0.006 | 0.200 | 0.412 | -0.030 | 0.031 | 4196 | 0.001 | 0.348 | 0.657 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | Gestational Age | 0.081 | 0.046 | 3917 | 0.007 | 0.078 | 0.144 | 0.071 | 0.043 | 4196 | 0.001 | 0.097 | 0.188 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | Birth weight | 0.006 | 0.044 | 3917 | 0.006 | 0.894 | 0.950 | 0.103 | 0.043 | 4196 | 0.001 | 0.017 | 0.045 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | Tobacco use | -0.023 | 0.050 | 3917 | 0.006 | 0.651 | 0.852 | -0.090 | 0.048 | 4196 | 0.002 | 0.062 | 0.262 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | Alcohol use | -0.001 | 0.036 | 3917 | 0.006 | 0.979 | 0.979 | 0.022 | 0.035 | 4196 | 0.001 | 0.533 | 0.923 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | Marijuana use | 0.115 | 0.071 | 3917 | 0.007 | 0.104 | 0.825 | -0.006 | 0.069 | 4196 | 0.001 | 0.934 | 0.999 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | Pregnancy complications | 0.018 | 0.032 | 3917 | 0.006 | 0.564 | 0.838 | 0.018 | 0.031 | 4196 | 0.001 | 0.562 | 0.824 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | Birth complications | -0.022 | 0.036 | 3917 | 0.006 | 0.544 | 0.745 | -0.031 | 0.033 | 4196 | 0.001 | 0.340 | 0.847 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | Unplanned pregnancy | 0.012 | 0.036 | 3917 | 0.030 | 0.751 | 0.982 | 0.026 | 0.036 | 4196 | 0.012 | 0.463 | 0.811 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | C-Section | 0.043 | 0.033 | 3917 | 0.030 | 0.185 | 0.405 | 0.030 | 0.032 | 4196 | 0.013 | 0.344 | 0.657 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | Gestational Age | 0.026 | 0.046 | 3917 | 0.030 | 0.565 | 0.686 | 0.121 | 0.043 | 4196 | 0.015 | 0.005 | 0.015 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | Birth weight | 0.115 | 0.044 | 3917 | 0.031 | 0.008 | 0.027 | 0.143 | 0.043 | 4196 | 0.015 | 0.001 | 0.005 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | Tobacco use | 0.015 | 0.050 | 3917 | 0.030 | 0.756 | 0.899 | -0.057 | 0.048 | 4196 | 0.012 | 0.243 | 0.662 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | Alcohol use | -0.023 | 0.036 | 3917 | 0.029 | 0.528 | 0.748 | -0.010 | 0.035 | 4196 | 0.012 | 0.771 | 0.923 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | Marijuana use | -0.025 | 0.070 | 3917 | 0.030 | 0.722 | 0.998 | -0.058 | 0.070 | 4196 | 0.012 | 0.409 | 0.882 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | Pregnancy complications | 0.001 | 0.032 | 3917 | 0.030 | 0.983 | 0.983 | 0.043 | 0.031 | 4196 | 0.013 | 0.172 | 0.505 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | Birth complications | 0.052 | 0.036 | 3917 | 0.030 | 0.142 | 0.686 | 0.052 | 0.033 | 4196 | 0.013 | 0.114 | 0.484 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | Unplanned pregnancy | -0.067 | 0.037 | 3917 | 0.034 | 0.069 | 0.668 | -0.082 | 0.036 | 4196 | 0.041 | 0.022 | 0.580 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | C-Section | 0.012 | 0.033 | 3917 | 0.034 | 0.719 | 0.818 | 0.004 | 0.031 | 4196 | 0.040 | 0.890 | 0.976 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | Gestational Age | 0.130 | 0.046 | 3917 | 0.036 | 0.005 | 0.016 | 0.100 | 0.043 | 4196 | 0.041 | 0.019 | 0.044 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | Birth weight | -0.002 | 0.044 | 3917 | 0.034 | 0.959 | 0.973 | 0.058 | 0.043 | 4196 | 0.040 | 0.179 | 0.314 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | Tobacco use | 0.014 | 0.050 | 3917 | 0.034 | 0.774 | 0.899 | 0.162 | 0.048 | 4196 | 0.043 | 0.001 | 0.016 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | Alcohol use | -0.031 | 0.036 | 3917 | 0.034 | 0.385 | 0.720 | 0.026 | 0.035 | 4196 | 0.040 | 0.457 | 0.918 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | Marijuana use | -0.073 | 0.071 | 3917 | 0.034 | 0.301 | 0.825 | 0.098 | 0.069 | 4196 | 0.040 | 0.158 | 0.882 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | Pregnancy complications | 0.051 | 0.032 | 3917 | 0.034 | 0.111 | 0.629 | 0.032 | 0.031 | 4196 | 0.040 | 0.309 | 0.742 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | Birth complications | 0.048 | 0.036 | 3917 | 0.034 | 0.176 | 0.686 | 0.008 | 0.033 | 4196 | 0.040 | 0.806 | 0.934 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | Unplanned pregnancy | 0.036 | 0.036 | 3917 | 0.024 | 0.317 | 0.897 | -0.001 | 0.036 | 4196 | 0.016 | 0.988 | 0.992 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | C-Section | -0.016 | 0.032 | 3917 | 0.024 | 0.626 | 0.760 | 0.012 | 0.031 | 4196 | 0.016 | 0.704 | 0.826 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | Gestational Age | 0.010 | 0.045 | 3917 | 0.023 | 0.832 | 0.891 | -0.099 | 0.043 | 4196 | 0.019 | 0.020 | 0.045 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | Birth weight | -0.078 | 0.043 | 3917 | 0.025 | 0.073 | 0.160 | -0.187 | 0.043 | 4196 | 0.022 | 0.000 | 0.000 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | Tobacco use | -0.070 | 0.049 | 3917 | 0.024 | 0.153 | 0.495 | -0.096 | 0.048 | 4196 | 0.017 | 0.045 | 0.206 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | Alcohol use | 0.063 | 0.035 | 3917 | 0.025 | 0.076 | 0.483 | 0.019 | 0.035 | 4196 | 0.016 | 0.581 | 0.923 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | Marijuana use | -0.023 | 0.069 | 3917 | 0.023 | 0.741 | 0.998 | 0.068 | 0.069 | 4196 | 0.016 | 0.324 | 0.882 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | Pregnancy complications | 0.005 | 0.031 | 3917 | 0.023 | 0.885 | 0.926 | -0.049 | 0.031 | 4196 | 0.017 | 0.117 | 0.448 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | Birth complications | -0.028 | 0.035 | 3917 | 0.024 | 0.430 | 0.715 | 0.015 | 0.033 | 4196 | 0.016 | 0.648 | 0.920 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | Unplanned pregnancy | 0.037 | 0.036 | 3917 | 0.022 | 0.310 | 0.897 | -0.012 | 0.036 | 4196 | 0.019 | 0.739 | 0.926 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | C-Section | 0.026 | 0.033 | 3917 | 0.022 | 0.431 | 0.639 | 0.013 | 0.032 | 4196 | 0.019 | 0.671 | 0.815 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | Gestational Age | -0.150 | 0.046 | 3917 | 0.025 | 0.001 | 0.005 | 0.012 | 0.043 | 4196 | 0.019 | 0.774 | 0.849 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | Birth weight | -0.005 | 0.044 | 3917 | 0.022 | 0.911 | 0.953 | -0.057 | 0.043 | 4196 | 0.020 | 0.189 | 0.314 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | Tobacco use | 0.113 | 0.050 | 3917 | 0.023 | 0.023 | 0.184 | 0.002 | 0.048 | 4196 | 0.019 | 0.971 | 0.985 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | Alcohol use | 0.038 | 0.036 | 3917 | 0.022 | 0.291 | 0.683 | -0.085 | 0.035 | 4196 | 0.020 | 0.015 | 0.205 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | Marijuana use | -0.028 | 0.070 | 3917 | 0.022 | 0.695 | 0.998 | -0.057 | 0.070 | 4196 | 0.020 | 0.416 | 0.882 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | Pregnancy complications | -0.007 | 0.032 | 3917 | 0.022 | 0.837 | 0.926 | -0.001 | 0.031 | 4196 | 0.019 | 0.979 | 0.993 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | Birth complications | -0.025 | 0.036 | 3917 | 0.022 | 0.487 | 0.715 | 0.020 | 0.033 | 4196 | 0.020 | 0.536 | 0.920 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | Unplanned pregnancy | -0.017 | 0.036 | 3917 | 0.054 | 0.647 | 0.982 | -0.042 | 0.035 | 4196 | 0.066 | 0.235 | 0.720 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | C-Section | 0.001 | 0.033 | 3917 | 0.054 | 0.978 | 0.993 | -0.020 | 0.031 | 4196 | 0.066 | 0.530 | 0.749 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | Gestational Age | 0.000 | 0.046 | 3917 | 0.054 | 0.999 | 0.999 | -0.145 | 0.042 | 4196 | 0.068 | 0.001 | 0.004 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | Birth weight | -0.131 | 0.044 | 3917 | 0.056 | 0.003 | 0.011 | -0.151 | 0.043 | 4196 | 0.069 | 0.000 | 0.003 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | Tobacco use | -0.033 | 0.050 | 3917 | 0.054 | 0.504 | 0.794 | 0.022 | 0.048 | 4196 | 0.066 | 0.648 | 0.882 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | Alcohol use | -0.047 | 0.036 | 3917 | 0.054 | 0.191 | 0.617 | 0.042 | 0.035 | 4196 | 0.066 | 0.221 | 0.817 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | Marijuana use | 0.052 | 0.070 | 3917 | 0.054 | 0.460 | 0.987 | -0.004 | 0.069 | 4196 | 0.066 | 0.958 | 0.999 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | Pregnancy complications | -0.011 | 0.032 | 3917 | 0.054 | 0.727 | 0.874 | -0.092 | 0.031 | 4196 | 0.068 | 0.003 | 0.185 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | Birth complications | 0.056 | 0.035 | 3917 | 0.055 | 0.113 | 0.686 | -0.074 | 0.033 | 4196 | 0.067 | 0.023 | 0.319 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | Unplanned pregnancy | 0.005 | 0.037 | 3917 | 0.001 | 0.894 | 0.982 | 0.031 | 0.036 | 4196 | 0.005 | 0.398 | 0.797 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | C-Section | 0.050 | 0.034 | 3917 | 0.002 | 0.139 | 0.401 | 0.029 | 0.032 | 4196 | 0.005 | 0.367 | 0.658 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | Gestational Age | 0.129 | 0.047 | 3917 | 0.003 | 0.006 | 0.020 | 0.108 | 0.044 | 4196 | 0.006 | 0.013 | 0.035 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | Birth weight | 0.004 | 0.045 | 3917 | 0.001 | 0.937 | 0.966 | 0.039 | 0.044 | 4196 | 0.005 | 0.374 | 0.484 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | Tobacco use | -0.090 | 0.051 | 3917 | 0.002 | 0.079 | 0.341 | -0.144 | 0.049 | 4196 | 0.007 | 0.004 | 0.040 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | Alcohol use | 0.024 | 0.037 | 3917 | 0.001 | 0.508 | 0.748 | -0.075 | 0.036 | 4196 | 0.006 | 0.035 | 0.296 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | Marijuana use | 0.040 | 0.072 | 3917 | 0.001 | 0.584 | 0.992 | -0.061 | 0.071 | 4196 | 0.005 | 0.387 | 0.882 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | Pregnancy complications | 0.022 | 0.033 | 3917 | 0.001 | 0.498 | 0.835 | -0.024 | 0.032 | 4196 | 0.005 | 0.458 | 0.797 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | Birth complications | 0.030 | 0.037 | 3917 | 0.001 | 0.417 | 0.715 | 0.014 | 0.034 | 4196 | 0.005 | 0.686 | 0.920 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | Unplanned pregnancy | -0.027 | 0.037 | 3917 | 0.029 | 0.456 | 0.969 | -0.022 | 0.036 | 4196 | 0.031 | 0.549 | 0.812 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | C-Section | -0.044 | 0.033 | 3917 | 0.030 | 0.181 | 0.405 | 0.025 | 0.032 | 4196 | 0.031 | 0.420 | 0.676 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | Gestational Age | -0.157 | 0.046 | 3917 | 0.033 | 0.001 | 0.004 | -0.130 | 0.043 | 4196 | 0.035 | 0.002 | 0.008 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | Birth weight | -0.084 | 0.044 | 3917 | 0.030 | 0.059 | 0.147 | -0.108 | 0.043 | 4196 | 0.034 | 0.012 | 0.034 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | Tobacco use | -0.153 | 0.050 | 3917 | 0.031 | 0.002 | 0.055 | -0.041 | 0.048 | 4196 | 0.031 | 0.402 | 0.754 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | Alcohol use | -0.084 | 0.036 | 3917 | 0.030 | 0.020 | 0.276 | 0.016 | 0.035 | 4196 | 0.031 | 0.644 | 0.923 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | Marijuana use | -0.100 | 0.071 | 3917 | 0.029 | 0.158 | 0.825 | -0.073 | 0.070 | 4196 | 0.031 | 0.293 | 0.882 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | Pregnancy complications | -0.100 | 0.032 | 3917 | 0.032 | 0.002 | 0.053 | -0.082 | 0.031 | 4196 | 0.033 | 0.008 | 0.187 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | Birth complications | -0.061 | 0.036 | 3917 | 0.030 | 0.091 | 0.686 | -0.057 | 0.033 | 4196 | 0.032 | 0.083 | 0.470 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | Unplanned pregnancy | 0.015 | 0.037 | 3917 | 0.026 | 0.689 | 0.982 | -0.056 | 0.036 | 4196 | 0.026 | 0.117 | 0.691 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | C-Section | -0.047 | 0.033 | 3917 | 0.027 | 0.158 | 0.401 | -0.025 | 0.032 | 4196 | 0.025 | 0.437 | 0.676 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | Gestational Age | 0.006 | 0.046 | 3917 | 0.026 | 0.896 | 0.923 | -0.083 | 0.043 | 4196 | 0.026 | 0.054 | 0.107 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | Birth weight | -0.073 | 0.044 | 3917 | 0.027 | 0.098 | 0.204 | -0.046 | 0.043 | 4196 | 0.025 | 0.289 | 0.431 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | Tobacco use | -0.162 | 0.050 | 3917 | 0.029 | 0.001 | 0.042 | 0.005 | 0.048 | 4196 | 0.025 | 0.920 | 0.985 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | Alcohol use | -0.030 | 0.036 | 3917 | 0.026 | 0.400 | 0.720 | 0.056 | 0.035 | 4196 | 0.026 | 0.115 | 0.598 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | Marijuana use | -0.069 | 0.071 | 3917 | 0.026 | 0.327 | 0.830 | 0.055 | 0.070 | 4196 | 0.025 | 0.428 | 0.882 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | Pregnancy complications | -0.019 | 0.032 | 3917 | 0.026 | 0.548 | 0.838 | -0.022 | 0.031 | 4196 | 0.025 | 0.480 | 0.797 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | Birth complications | -0.022 | 0.036 | 3917 | 0.026 | 0.548 | 0.745 | -0.032 | 0.033 | 4196 | 0.025 | 0.336 | 0.847 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | Unplanned pregnancy | 0.038 | 0.037 | 3917 | 0.020 | 0.309 | 0.897 | 0.030 | 0.036 | 4196 | 0.041 | 0.393 | 0.797 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | C-Section | -0.045 | 0.033 | 3917 | 0.020 | 0.174 | 0.405 | -0.009 | 0.031 | 4196 | 0.041 | 0.774 | 0.877 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | Gestational Age | -0.039 | 0.046 | 3917 | 0.020 | 0.403 | 0.517 | 0.039 | 0.043 | 4196 | 0.041 | 0.361 | 0.531 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | Birth weight | 0.022 | 0.044 | 3917 | 0.020 | 0.617 | 0.749 | 0.007 | 0.043 | 4196 | 0.041 | 0.866 | 0.879 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | Tobacco use | 0.055 | 0.050 | 3917 | 0.020 | 0.273 | 0.689 | 0.096 | 0.048 | 4196 | 0.042 | 0.045 | 0.206 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | Alcohol use | 0.085 | 0.036 | 3917 | 0.021 | 0.019 | 0.276 | 0.056 | 0.035 | 4196 | 0.041 | 0.110 | 0.598 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | Marijuana use | 0.101 | 0.071 | 3917 | 0.020 | 0.154 | 0.825 | 0.052 | 0.069 | 4196 | 0.041 | 0.454 | 0.882 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | Pregnancy complications | -0.015 | 0.032 | 3917 | 0.020 | 0.638 | 0.868 | 0.048 | 0.031 | 4196 | 0.041 | 0.119 | 0.448 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | Birth complications | -0.002 | 0.036 | 3917 | 0.020 | 0.946 | 0.996 | 0.082 | 0.033 | 4196 | 0.042 | 0.013 | 0.314 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | Unplanned pregnancy | -0.023 | 0.036 | 3917 | 0.041 | 0.532 | 0.982 | 0.027 | 0.036 | 4196 | 0.027 | 0.457 | 0.811 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | C-Section | 0.015 | 0.033 | 3917 | 0.041 | 0.641 | 0.764 | -0.037 | 0.032 | 4196 | 0.027 | 0.243 | 0.642 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | Gestational Age | 0.011 | 0.045 | 3917 | 0.041 | 0.814 | 0.891 | -0.017 | 0.043 | 4196 | 0.027 | 0.693 | 0.798 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | Birth weight | 0.158 | 0.043 | 3917 | 0.043 | 0.000 | 0.002 | 0.120 | 0.043 | 4196 | 0.028 | 0.006 | 0.020 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | Tobacco use | 0.036 | 0.049 | 3917 | 0.041 | 0.469 | 0.794 | -0.042 | 0.048 | 4196 | 0.027 | 0.382 | 0.752 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | Alcohol use | -0.006 | 0.035 | 3917 | 0.041 | 0.860 | 0.949 | -0.033 | 0.035 | 4196 | 0.027 | 0.345 | 0.918 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | Marijuana use | -0.072 | 0.070 | 3917 | 0.041 | 0.303 | 0.825 | -0.010 | 0.070 | 4196 | 0.027 | 0.888 | 0.999 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | Pregnancy complications | 0.020 | 0.032 | 3917 | 0.041 | 0.517 | 0.836 | 0.030 | 0.031 | 4196 | 0.027 | 0.338 | 0.742 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | Birth complications | -0.003 | 0.035 | 3917 | 0.041 | 0.933 | 0.996 | 0.001 | 0.033 | 4196 | 0.027 | 0.988 | 0.989 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | Unplanned pregnancy | -0.018 | 0.037 | 3917 | 0.011 | 0.621 | 0.982 | 0.077 | 0.037 | 4196 | 0.006 | 0.035 | 0.580 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | C-Section | -0.018 | 0.034 | 3917 | 0.011 | 0.596 | 0.757 | -0.029 | 0.032 | 4196 | 0.005 | 0.368 | 0.658 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | Gestational Age | -0.042 | 0.047 | 3917 | 0.011 | 0.366 | 0.478 | -0.107 | 0.044 | 4196 | 0.007 | 0.014 | 0.035 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | Birth weight | -0.064 | 0.045 | 3917 | 0.011 | 0.154 | 0.283 | 0.032 | 0.044 | 4196 | 0.005 | 0.468 | 0.539 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | Tobacco use | 0.034 | 0.051 | 3917 | 0.011 | 0.504 | 0.794 | 0.102 | 0.049 | 4196 | 0.006 | 0.038 | 0.200 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | Alcohol use | -0.021 | 0.037 | 3917 | 0.011 | 0.562 | 0.779 | -0.003 | 0.036 | 4196 | 0.005 | 0.930 | 0.974 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | Marijuana use | 0.077 | 0.072 | 3917 | 0.011 | 0.282 | 0.825 | -0.030 | 0.071 | 4196 | 0.005 | 0.674 | 0.972 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | Pregnancy complications | -0.034 | 0.032 | 3917 | 0.011 | 0.296 | 0.773 | -0.062 | 0.032 | 4196 | 0.006 | 0.051 | 0.348 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | Birth complications | 0.012 | 0.036 | 3917 | 0.011 | 0.734 | 0.875 | -0.014 | 0.034 | 4196 | 0.005 | 0.682 | 0.920 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | Unplanned pregnancy | -0.018 | 0.036 | 3917 | 0.047 | 0.619 | 0.982 | 0.017 | 0.036 | 4196 | 0.041 | 0.643 | 0.875 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | C-Section | 0.067 | 0.033 | 3917 | 0.049 | 0.041 | 0.187 | -0.076 | 0.031 | 4196 | 0.041 | 0.015 | 0.111 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | Gestational Age | 0.053 | 0.046 | 3917 | 0.048 | 0.240 | 0.363 | 0.005 | 0.043 | 4196 | 0.040 | 0.899 | 0.955 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | Birth weight | 0.104 | 0.044 | 3917 | 0.049 | 0.017 | 0.050 | 0.119 | 0.043 | 4196 | 0.042 | 0.006 | 0.020 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | Tobacco use | -0.007 | 0.050 | 3917 | 0.047 | 0.890 | 0.941 | -0.053 | 0.048 | 4196 | 0.041 | 0.266 | 0.696 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | Alcohol use | -0.051 | 0.036 | 3917 | 0.048 | 0.148 | 0.560 | -0.091 | 0.035 | 4196 | 0.041 | 0.009 | 0.151 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | Marijuana use | -0.035 | 0.070 | 3917 | 0.047 | 0.613 | 0.992 | -0.033 | 0.069 | 4196 | 0.040 | 0.638 | 0.972 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | Pregnancy complications | 0.052 | 0.032 | 3917 | 0.048 | 0.100 | 0.629 | 0.025 | 0.031 | 4196 | 0.041 | 0.418 | 0.786 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | Birth complications | -0.028 | 0.035 | 3917 | 0.047 | 0.425 | 0.715 | -0.036 | 0.033 | 4196 | 0.041 | 0.268 | 0.803 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | Unplanned pregnancy | -0.061 | 0.037 | 3917 | 0.003 | 0.102 | 0.671 | 0.003 | 0.037 | 4196 | 0.008 | 0.928 | 0.992 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | C-Section | -0.007 | 0.034 | 3917 | 0.003 | 0.829 | 0.872 | 0.001 | 0.032 | 4196 | 0.008 | 0.983 | 0.983 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | Gestational Age | 0.051 | 0.047 | 3917 | 0.003 | 0.278 | 0.386 | 0.058 | 0.044 | 4196 | 0.009 | 0.183 | 0.319 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | Birth weight | 0.037 | 0.045 | 3917 | 0.003 | 0.415 | 0.589 | 0.104 | 0.044 | 4196 | 0.010 | 0.018 | 0.047 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | Tobacco use | -0.013 | 0.051 | 3917 | 0.003 | 0.807 | 0.899 | -0.025 | 0.049 | 4196 | 0.008 | 0.609 | 0.859 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | Alcohol use | -0.017 | 0.037 | 3917 | 0.003 | 0.652 | 0.822 | 0.000 | 0.036 | 4196 | 0.008 | 0.989 | 0.995 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | Marijuana use | 0.017 | 0.072 | 3917 | 0.003 | 0.809 | 0.998 | -0.054 | 0.071 | 4196 | 0.008 | 0.444 | 0.882 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | Pregnancy complications | -0.023 | 0.033 | 3917 | 0.003 | 0.487 | 0.835 | 0.047 | 0.032 | 4196 | 0.009 | 0.139 | 0.473 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | Birth complications | 0.041 | 0.037 | 3917 | 0.003 | 0.258 | 0.715 | 0.035 | 0.034 | 4196 | 0.009 | 0.295 | 0.803 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | Unplanned pregnancy | -0.018 | 0.037 | 3917 | 0.008 | 0.616 | 0.982 | 0.063 | 0.036 | 4196 | 0.005 | 0.080 | 0.679 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | C-Section | 0.019 | 0.033 | 3917 | 0.008 | 0.566 | 0.741 | -0.041 | 0.032 | 4196 | 0.005 | 0.196 | 0.607 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | Gestational Age | 0.215 | 0.046 | 3917 | 0.014 | 0.000 | 0.000 | 0.054 | 0.043 | 4196 | 0.005 | 0.213 | 0.354 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | Birth weight | -0.044 | 0.044 | 3917 | 0.008 | 0.318 | 0.492 | 0.122 | 0.044 | 4196 | 0.006 | 0.005 | 0.020 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | Tobacco use | -0.007 | 0.050 | 3917 | 0.008 | 0.886 | 0.941 | 0.040 | 0.049 | 4196 | 0.005 | 0.410 | 0.754 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | Alcohol use | -0.080 | 0.036 | 3917 | 0.009 | 0.025 | 0.276 | -0.013 | 0.036 | 4196 | 0.005 | 0.724 | 0.923 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | Marijuana use | -0.019 | 0.071 | 3917 | 0.008 | 0.792 | 0.998 | -0.002 | 0.070 | 4196 | 0.005 | 0.982 | 0.999 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | Pregnancy complications | 0.042 | 0.032 | 3917 | 0.009 | 0.192 | 0.725 | 0.015 | 0.031 | 4196 | 0.005 | 0.628 | 0.824 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | Birth complications | 0.033 | 0.036 | 3917 | 0.008 | 0.361 | 0.715 | 0.001 | 0.033 | 4196 | 0.005 | 0.976 | 0.989 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | Unplanned pregnancy | -0.034 | 0.037 | 3917 | 0.000 | 0.359 | 0.939 | -0.055 | 0.036 | 4196 | 0.003 | 0.126 | 0.691 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | C-Section | -0.059 | 0.033 | 3917 | 0.001 | 0.075 | 0.279 | -0.016 | 0.032 | 4196 | 0.003 | 0.605 | 0.776 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | Gestational Age | -0.063 | 0.046 | 3917 | 0.001 | 0.173 | 0.273 | -0.029 | 0.043 | 4196 | 0.003 | 0.506 | 0.670 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | Birth weight | -0.156 | 0.044 | 3917 | 0.003 | 0.000 | 0.002 | -0.131 | 0.043 | 4196 | 0.005 | 0.003 | 0.012 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | Tobacco use | -0.020 | 0.050 | 3917 | 0.000 | 0.694 | 0.891 | 0.000 | 0.049 | 4196 | 0.003 | 0.994 | 0.994 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | Alcohol use | -0.083 | 0.036 | 3917 | 0.001 | 0.021 | 0.276 | -0.012 | 0.035 | 4196 | 0.003 | 0.738 | 0.923 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | Marijuana use | -0.075 | 0.071 | 3917 | 0.000 | 0.293 | 0.825 | -0.145 | 0.070 | 4196 | 0.004 | 0.037 | 0.665 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | Pregnancy complications | -0.027 | 0.032 | 3917 | 0.000 | 0.406 | 0.830 | -0.073 | 0.031 | 4196 | 0.004 | 0.019 | 0.250 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | Birth complications | -0.045 | 0.036 | 3917 | 0.000 | 0.205 | 0.698 | 0.026 | 0.033 | 4196 | 0.003 | 0.442 | 0.913 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | Unplanned pregnancy | -0.059 | 0.036 | 3917 | 0.039 | 0.103 | 0.671 | 0.011 | 0.036 | 4196 | 0.052 | 0.749 | 0.926 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | C-Section | 0.098 | 0.033 | 3917 | 0.041 | 0.003 | 0.053 | 0.092 | 0.031 | 4196 | 0.054 | 0.003 | 0.035 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | Gestational Age | 0.198 | 0.046 | 3917 | 0.044 | 0.000 | 0.000 | 0.143 | 0.042 | 4196 | 0.055 | 0.001 | 0.004 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | Birth weight | 0.127 | 0.044 | 3917 | 0.041 | 0.004 | 0.014 | 0.019 | 0.043 | 4196 | 0.052 | 0.664 | 0.735 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | Tobacco use | -0.047 | 0.050 | 3917 | 0.039 | 0.348 | 0.763 | -0.032 | 0.048 | 4196 | 0.052 | 0.502 | 0.807 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | Alcohol use | 0.006 | 0.036 | 3917 | 0.039 | 0.876 | 0.949 | -0.022 | 0.035 | 4196 | 0.052 | 0.538 | 0.923 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | Marijuana use | -0.051 | 0.070 | 3917 | 0.039 | 0.464 | 0.987 | -0.070 | 0.069 | 4196 | 0.052 | 0.312 | 0.882 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | Pregnancy complications | 0.097 | 0.032 | 3917 | 0.042 | 0.002 | 0.053 | 0.061 | 0.031 | 4196 | 0.053 | 0.048 | 0.348 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | Birth complications | 0.046 | 0.036 | 3917 | 0.039 | 0.192 | 0.686 | 0.081 | 0.033 | 4196 | 0.054 | 0.014 | 0.314 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | Unplanned pregnancy | -0.055 | 0.036 | 3917 | 0.044 | 0.129 | 0.676 | -0.054 | 0.036 | 4196 | 0.037 | 0.135 | 0.691 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | C-Section | 0.007 | 0.033 | 3917 | 0.044 | 0.834 | 0.872 | -0.037 | 0.031 | 4196 | 0.037 | 0.246 | 0.642 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | Gestational Age | 0.070 | 0.046 | 3917 | 0.044 | 0.128 | 0.212 | -0.001 | 0.043 | 4196 | 0.037 | 0.982 | 0.982 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | Birth weight | 0.083 | 0.044 | 3917 | 0.045 | 0.060 | 0.147 | 0.036 | 0.043 | 4196 | 0.037 | 0.400 | 0.495 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | Tobacco use | -0.013 | 0.050 | 3917 | 0.044 | 0.798 | 0.899 | 0.007 | 0.048 | 4196 | 0.037 | 0.880 | 0.985 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | Alcohol use | -0.029 | 0.036 | 3917 | 0.044 | 0.417 | 0.720 | 0.020 | 0.035 | 4196 | 0.037 | 0.575 | 0.923 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | Marijuana use | -0.045 | 0.071 | 3917 | 0.044 | 0.522 | 0.992 | 0.000 | 0.070 | 4196 | 0.037 | 0.999 | 0.999 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | Pregnancy complications | 0.027 | 0.032 | 3917 | 0.044 | 0.391 | 0.830 | -0.015 | 0.031 | 4196 | 0.037 | 0.622 | 0.824 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | Birth complications | 0.020 | 0.036 | 3917 | 0.044 | 0.580 | 0.766 | 0.017 | 0.033 | 4196 | 0.037 | 0.598 | 0.920 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | Unplanned pregnancy | 0.029 | 0.037 | 3917 | 0.005 | 0.433 | 0.951 | 0.034 | 0.037 | 4196 | 0.004 | 0.355 | 0.790 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | C-Section | -0.059 | 0.033 | 3917 | 0.005 | 0.078 | 0.279 | -0.114 | 0.032 | 4196 | 0.006 | 0.000 | 0.026 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | Gestational Age | -0.196 | 0.046 | 3917 | 0.008 | 0.000 | 0.000 | -0.194 | 0.043 | 4196 | 0.007 | 0.000 | 0.000 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | Birth weight | -0.239 | 0.044 | 3917 | 0.010 | 0.000 | 0.000 | -0.146 | 0.044 | 4196 | 0.006 | 0.001 | 0.005 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | Tobacco use | 0.082 | 0.051 | 3917 | 0.005 | 0.106 | 0.402 | 0.048 | 0.049 | 4196 | 0.004 | 0.329 | 0.736 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | Alcohol use | 0.070 | 0.036 | 3917 | 0.005 | 0.053 | 0.402 | 0.005 | 0.036 | 4196 | 0.003 | 0.894 | 0.965 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | Marijuana use | 0.081 | 0.071 | 3917 | 0.005 | 0.257 | 0.825 | 0.033 | 0.071 | 4196 | 0.003 | 0.644 | 0.972 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | Pregnancy complications | -0.084 | 0.032 | 3917 | 0.006 | 0.009 | 0.154 | -0.024 | 0.032 | 4196 | 0.003 | 0.448 | 0.797 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | Birth complications | -0.019 | 0.036 | 3917 | 0.005 | 0.608 | 0.766 | -0.104 | 0.034 | 4196 | 0.005 | 0.002 | 0.142 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | Unplanned pregnancy | -0.003 | 0.037 | 3917 | 0.005 | 0.933 | 0.982 | 0.023 | 0.036 | 4196 | -0.001 | 0.521 | 0.811 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | C-Section | 0.014 | 0.033 | 3917 | 0.005 | 0.663 | 0.778 | 0.042 | 0.032 | 4196 | 0.000 | 0.182 | 0.589 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | Gestational Age | 0.131 | 0.046 | 3917 | 0.009 | 0.004 | 0.016 | 0.244 | 0.043 | 4196 | 0.010 | 0.000 | 0.000 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | Birth weight | 0.048 | 0.044 | 3917 | 0.006 | 0.283 | 0.458 | 0.123 | 0.043 | 4196 | 0.002 | 0.005 | 0.020 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | Tobacco use | -0.078 | 0.050 | 3917 | 0.006 | 0.121 | 0.434 | -0.070 | 0.049 | 4196 | -0.001 | 0.152 | 0.475 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | Alcohol use | -0.042 | 0.036 | 3917 | 0.006 | 0.243 | 0.636 | -0.094 | 0.035 | 4196 | 0.001 | 0.008 | 0.151 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | Marijuana use | -0.017 | 0.071 | 3917 | 0.005 | 0.807 | 0.998 | -0.048 | 0.070 | 4196 | -0.001 | 0.496 | 0.930 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | Pregnancy complications | 0.052 | 0.032 | 3917 | 0.006 | 0.105 | 0.629 | 0.047 | 0.031 | 4196 | 0.000 | 0.136 | 0.473 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | Birth complications | 0.018 | 0.036 | 3917 | 0.005 | 0.608 | 0.766 | 0.019 | 0.033 | 4196 | -0.001 | 0.571 | 0.920 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | Unplanned pregnancy | 0.047 | 0.037 | 3917 | 0.006 | 0.198 | 0.748 | 0.001 | 0.036 | 4196 | 0.006 | 0.984 | 0.992 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | C-Section | 0.037 | 0.033 | 3917 | 0.006 | 0.269 | 0.481 | 0.021 | 0.032 | 4196 | 0.006 | 0.510 | 0.749 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | Gestational Age | -0.098 | 0.046 | 3917 | 0.006 | 0.035 | 0.071 | 0.013 | 0.043 | 4196 | 0.006 | 0.763 | 0.849 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | Birth weight | -0.009 | 0.044 | 3917 | 0.005 | 0.833 | 0.907 | 0.044 | 0.044 | 4196 | 0.007 | 0.314 | 0.454 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | Tobacco use | 0.111 | 0.050 | 3917 | 0.007 | 0.027 | 0.184 | 0.075 | 0.049 | 4196 | 0.007 | 0.127 | 0.459 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | Alcohol use | 0.049 | 0.036 | 3917 | 0.006 | 0.174 | 0.593 | 0.028 | 0.036 | 4196 | 0.006 | 0.424 | 0.918 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | Marijuana use | 0.168 | 0.071 | 3917 | 0.007 | 0.018 | 0.564 | 0.157 | 0.071 | 4196 | 0.007 | 0.027 | 0.665 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | Pregnancy complications | -0.027 | 0.032 | 3917 | 0.005 | 0.404 | 0.830 | 0.029 | 0.032 | 4196 | 0.007 | 0.351 | 0.742 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | Birth complications | 0.026 | 0.036 | 3917 | 0.005 | 0.472 | 0.715 | -0.009 | 0.034 | 4196 | 0.006 | 0.788 | 0.934 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | Unplanned pregnancy | 0.020 | 0.037 | 3917 | 0.032 | 0.588 | 0.982 | 0.046 | 0.036 | 4196 | 0.026 | 0.199 | 0.691 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | C-Section | 0.098 | 0.033 | 3917 | 0.034 | 0.003 | 0.053 | 0.070 | 0.032 | 4196 | 0.027 | 0.028 | 0.148 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | Gestational Age | -0.043 | 0.046 | 3917 | 0.032 | 0.354 | 0.478 | -0.100 | 0.043 | 4196 | 0.027 | 0.021 | 0.045 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | Birth weight | 0.020 | 0.044 | 3917 | 0.032 | 0.649 | 0.774 | 0.019 | 0.044 | 4196 | 0.026 | 0.662 | 0.735 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | Tobacco use | 0.034 | 0.050 | 3917 | 0.032 | 0.505 | 0.794 | 0.031 | 0.049 | 4196 | 0.026 | 0.519 | 0.807 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | Alcohol use | -0.054 | 0.036 | 3917 | 0.032 | 0.135 | 0.560 | -0.024 | 0.035 | 4196 | 0.026 | 0.493 | 0.923 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | Marijuana use | 0.025 | 0.071 | 3917 | 0.031 | 0.729 | 0.998 | 0.045 | 0.070 | 4196 | 0.026 | 0.519 | 0.930 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | Pregnancy complications | 0.043 | 0.032 | 3917 | 0.032 | 0.179 | 0.717 | 0.053 | 0.031 | 4196 | 0.027 | 0.089 | 0.430 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | Birth complications | -0.025 | 0.036 | 3917 | 0.032 | 0.492 | 0.715 | -0.019 | 0.033 | 4196 | 0.026 | 0.570 | 0.920 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | Unplanned pregnancy | -0.004 | 0.036 | 3917 | 0.011 | 0.919 | 0.982 | 0.022 | 0.036 | 4196 | 0.008 | 0.534 | 0.811 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | C-Section | -0.035 | 0.033 | 3917 | 0.011 | 0.292 | 0.509 | -0.018 | 0.032 | 4196 | 0.008 | 0.562 | 0.749 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | Gestational Age | -0.014 | 0.046 | 3917 | 0.011 | 0.762 | 0.849 | -0.034 | 0.043 | 4196 | 0.008 | 0.433 | 0.600 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | Birth weight | 0.190 | 0.044 | 3917 | 0.017 | 0.000 | 0.000 | 0.069 | 0.043 | 4196 | 0.009 | 0.113 | 0.214 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | Tobacco use | 0.027 | 0.050 | 3917 | 0.011 | 0.586 | 0.805 | 0.173 | 0.049 | 4196 | 0.010 | 0.000 | 0.013 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | Alcohol use | -0.026 | 0.036 | 3917 | 0.012 | 0.473 | 0.730 | 0.050 | 0.035 | 4196 | 0.009 | 0.155 | 0.658 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | Marijuana use | -0.082 | 0.070 | 3917 | 0.012 | 0.244 | 0.825 | -0.008 | 0.070 | 4196 | 0.008 | 0.905 | 0.999 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | Pregnancy complications | 0.030 | 0.032 | 3917 | 0.012 | 0.343 | 0.830 | -0.041 | 0.031 | 4196 | 0.009 | 0.195 | 0.510 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | Birth complications | -0.047 | 0.036 | 3917 | 0.012 | 0.184 | 0.686 | 0.011 | 0.033 | 4196 | 0.008 | 0.734 | 0.924 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | Unplanned pregnancy | 0.003 | 0.035 | 3917 | 0.060 | 0.938 | 0.982 | -0.037 | 0.035 | 4196 | 0.028 | 0.293 | 0.765 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | C-Section | 0.011 | 0.031 | 3917 | 0.060 | 0.721 | 0.818 | 0.069 | 0.031 | 4196 | 0.028 | 0.026 | 0.148 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | Gestational Age | -0.125 | 0.043 | 3917 | 0.064 | 0.004 | 0.015 | -0.137 | 0.042 | 4196 | 0.032 | 0.001 | 0.005 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | Birth weight | -0.137 | 0.042 | 3917 | 0.065 | 0.001 | 0.005 | -0.180 | 0.042 | 4196 | 0.033 | 0.000 | 0.000 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | Tobacco use | -0.036 | 0.047 | 3917 | 0.060 | 0.450 | 0.794 | 0.005 | 0.047 | 4196 | 0.028 | 0.912 | 0.985 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | Alcohol use | 0.049 | 0.034 | 3917 | 0.061 | 0.145 | 0.560 | 0.063 | 0.034 | 4196 | 0.030 | 0.067 | 0.456 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | Marijuana use | -0.047 | 0.067 | 3917 | 0.060 | 0.480 | 0.990 | 0.014 | 0.068 | 4196 | 0.028 | 0.835 | 0.999 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | Pregnancy complications | -0.034 | 0.030 | 3917 | 0.061 | 0.257 | 0.770 | -0.054 | 0.030 | 4196 | 0.029 | 0.075 | 0.420 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | Birth complications | -0.001 | 0.034 | 3917 | 0.060 | 0.981 | 0.996 | -0.011 | 0.032 | 4196 | 0.028 | 0.728 | 0.924 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | Unplanned pregnancy | -0.007 | 0.037 | 3917 | 0.039 | 0.838 | 0.982 | 0.005 | 0.036 | 4196 | 0.025 | 0.900 | 0.992 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | C-Section | 0.027 | 0.033 | 3917 | 0.040 | 0.410 | 0.634 | 0.056 | 0.032 | 4196 | 0.026 | 0.078 | 0.330 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | Gestational Age | 0.144 | 0.046 | 3917 | 0.042 | 0.002 | 0.008 | 0.160 | 0.043 | 4196 | 0.029 | 0.000 | 0.002 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | Birth weight | 0.218 | 0.044 | 3917 | 0.045 | 0.000 | 0.000 | 0.184 | 0.043 | 4196 | 0.030 | 0.000 | 0.000 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | Tobacco use | -0.132 | 0.050 | 3917 | 0.041 | 0.008 | 0.112 | -0.125 | 0.049 | 4196 | 0.027 | 0.010 | 0.085 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | Alcohol use | -0.088 | 0.036 | 3917 | 0.041 | 0.015 | 0.276 | -0.040 | 0.035 | 4196 | 0.026 | 0.257 | 0.875 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | Marijuana use | -0.158 | 0.071 | 3917 | 0.041 | 0.025 | 0.564 | -0.093 | 0.070 | 4196 | 0.026 | 0.182 | 0.882 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | Pregnancy complications | 0.037 | 0.032 | 3917 | 0.040 | 0.246 | 0.770 | 0.034 | 0.031 | 4196 | 0.026 | 0.277 | 0.698 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | Birth complications | 0.009 | 0.036 | 3917 | 0.039 | 0.797 | 0.934 | 0.063 | 0.033 | 4196 | 0.026 | 0.057 | 0.470 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | Unplanned pregnancy | 0.014 | 0.036 | 3917 | 0.026 | 0.695 | 0.982 | -0.031 | 0.036 | 4196 | 0.032 | 0.383 | 0.797 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | C-Section | -0.085 | 0.033 | 3917 | 0.027 | 0.009 | 0.081 | 0.001 | 0.031 | 4196 | 0.032 | 0.970 | 0.983 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | Gestational Age | -0.078 | 0.046 | 3917 | 0.026 | 0.086 | 0.151 | -0.048 | 0.042 | 4196 | 0.032 | 0.256 | 0.395 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | Birth weight | -0.082 | 0.044 | 3917 | 0.026 | 0.060 | 0.147 | -0.043 | 0.043 | 4196 | 0.032 | 0.320 | 0.454 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | Tobacco use | 0.105 | 0.050 | 3917 | 0.027 | 0.036 | 0.200 | 0.170 | 0.048 | 4196 | 0.034 | 0.000 | 0.013 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | Alcohol use | 0.043 | 0.036 | 3917 | 0.026 | 0.226 | 0.636 | -0.013 | 0.035 | 4196 | 0.032 | 0.700 | 0.923 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | Marijuana use | 0.013 | 0.070 | 3917 | 0.026 | 0.848 | 0.998 | 0.026 | 0.069 | 4196 | 0.032 | 0.701 | 0.972 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | Pregnancy complications | 0.010 | 0.032 | 3917 | 0.026 | 0.753 | 0.883 | -0.013 | 0.031 | 4196 | 0.032 | 0.674 | 0.825 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | Birth complications | -0.001 | 0.036 | 3917 | 0.025 | 0.981 | 0.996 | -0.006 | 0.033 | 4196 | 0.032 | 0.846 | 0.934 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | Unplanned pregnancy | 0.051 | 0.037 | 3917 | 0.007 | 0.173 | 0.723 | -0.068 | 0.037 | 4196 | 0.002 | 0.063 | 0.613 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | C-Section | 0.011 | 0.034 | 3917 | 0.006 | 0.736 | 0.821 | 0.018 | 0.032 | 4196 | 0.001 | 0.576 | 0.754 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | Gestational Age | -0.052 | 0.047 | 3917 | 0.006 | 0.267 | 0.378 | -0.036 | 0.044 | 4196 | 0.001 | 0.414 | 0.586 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | Birth weight | -0.028 | 0.045 | 3917 | 0.006 | 0.533 | 0.659 | -0.038 | 0.044 | 4196 | 0.001 | 0.391 | 0.492 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | Tobacco use | 0.027 | 0.051 | 3917 | 0.006 | 0.592 | 0.805 | 0.032 | 0.049 | 4196 | 0.001 | 0.522 | 0.807 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | Alcohol use | 0.054 | 0.037 | 3917 | 0.007 | 0.139 | 0.560 | -0.003 | 0.036 | 4196 | 0.001 | 0.931 | 0.974 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | Marijuana use | 0.091 | 0.072 | 3917 | 0.007 | 0.205 | 0.825 | 0.071 | 0.071 | 4196 | 0.001 | 0.320 | 0.882 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | Pregnancy complications | -0.030 | 0.032 | 3917 | 0.006 | 0.359 | 0.830 | 0.006 | 0.032 | 4196 | 0.001 | 0.856 | 0.928 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | Birth complications | 0.018 | 0.036 | 3917 | 0.006 | 0.621 | 0.768 | 0.001 | 0.034 | 4196 | 0.001 | 0.968 | 0.989 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | Unplanned pregnancy | -0.070 | 0.037 | 3917 | 0.004 | 0.060 | 0.668 | -0.010 | 0.037 | 4196 | 0.002 | 0.785 | 0.926 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | C-Section | -0.018 | 0.034 | 3917 | 0.003 | 0.601 | 0.757 | -0.011 | 0.032 | 4196 | 0.002 | 0.744 | 0.858 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | Gestational Age | -0.105 | 0.047 | 3917 | 0.004 | 0.025 | 0.054 | -0.030 | 0.044 | 4196 | 0.002 | 0.487 | 0.662 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | Birth weight | -0.069 | 0.045 | 3917 | 0.003 | 0.125 | 0.250 | -0.012 | 0.044 | 4196 | 0.002 | 0.785 | 0.816 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | Tobacco use | -0.041 | 0.051 | 3917 | 0.003 | 0.424 | 0.794 | -0.124 | 0.049 | 4196 | 0.003 | 0.012 | 0.091 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | Alcohol use | 0.034 | 0.037 | 3917 | 0.003 | 0.361 | 0.720 | 0.032 | 0.036 | 4196 | 0.002 | 0.379 | 0.918 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | Marijuana use | -0.032 | 0.072 | 3917 | 0.003 | 0.659 | 0.998 | -0.063 | 0.071 | 4196 | 0.002 | 0.376 | 0.882 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | Pregnancy complications | 0.017 | 0.033 | 3917 | 0.003 | 0.596 | 0.838 | -0.043 | 0.032 | 4196 | 0.003 | 0.178 | 0.505 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | Birth complications | -0.078 | 0.037 | 3917 | 0.004 | 0.032 | 0.607 | -0.007 | 0.034 | 4196 | 0.002 | 0.828 | 0.934 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | Unplanned pregnancy | 0.044 | 0.037 | 3917 | 0.013 | 0.232 | 0.787 | 0.003 | 0.036 | 4196 | 0.029 | 0.936 | 0.992 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | C-Section | 0.052 | 0.033 | 3917 | 0.013 | 0.117 | 0.377 | 0.075 | 0.032 | 4196 | 0.030 | 0.019 | 0.125 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | Gestational Age | 0.135 | 0.046 | 3917 | 0.015 | 0.004 | 0.015 | 0.060 | 0.043 | 4196 | 0.029 | 0.162 | 0.298 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | Birth weight | 0.032 | 0.045 | 3917 | 0.013 | 0.472 | 0.632 | 0.070 | 0.044 | 4196 | 0.029 | 0.106 | 0.206 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | Tobacco use | 0.034 | 0.051 | 3917 | 0.012 | 0.506 | 0.794 | 0.050 | 0.049 | 4196 | 0.029 | 0.301 | 0.731 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | Alcohol use | -0.039 | 0.036 | 3917 | 0.012 | 0.286 | 0.683 | 0.093 | 0.035 | 4196 | 0.030 | 0.008 | 0.151 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | Marijuana use | 0.030 | 0.071 | 3917 | 0.012 | 0.672 | 0.998 | 0.137 | 0.070 | 4196 | 0.030 | 0.051 | 0.688 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | Pregnancy complications | 0.023 | 0.032 | 3917 | 0.012 | 0.469 | 0.835 | -0.015 | 0.031 | 4196 | 0.029 | 0.629 | 0.824 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | Birth complications | 0.024 | 0.036 | 3917 | 0.012 | 0.504 | 0.715 | 0.000 | 0.033 | 4196 | 0.029 | 0.989 | 0.989 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | Unplanned pregnancy | 0.051 | 0.037 | 3917 | 0.019 | 0.171 | 0.723 | 0.034 | 0.036 | 4196 | 0.016 | 0.354 | 0.790 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | C-Section | 0.017 | 0.033 | 3917 | 0.018 | 0.615 | 0.760 | 0.052 | 0.032 | 4196 | 0.017 | 0.102 | 0.356 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | Gestational Age | 0.090 | 0.046 | 3917 | 0.019 | 0.054 | 0.102 | -0.044 | 0.043 | 4196 | 0.016 | 0.306 | 0.462 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | Birth weight | -0.047 | 0.045 | 3917 | 0.019 | 0.297 | 0.470 | -0.040 | 0.044 | 4196 | 0.016 | 0.355 | 0.473 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | Tobacco use | -0.048 | 0.051 | 3917 | 0.019 | 0.342 | 0.763 | -0.042 | 0.049 | 4196 | 0.016 | 0.387 | 0.752 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | Alcohol use | -0.025 | 0.036 | 3917 | 0.018 | 0.488 | 0.737 | 0.084 | 0.036 | 4196 | 0.018 | 0.018 | 0.205 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | Marijuana use | -0.074 | 0.071 | 3917 | 0.019 | 0.298 | 0.825 | -0.078 | 0.071 | 4196 | 0.016 | 0.267 | 0.882 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | Pregnancy complications | -0.007 | 0.032 | 3917 | 0.018 | 0.817 | 0.926 | 0.000 | 0.032 | 4196 | 0.016 | 0.997 | 0.997 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | Birth complications | 0.040 | 0.036 | 3917 | 0.019 | 0.272 | 0.715 | -0.023 | 0.033 | 4196 | 0.016 | 0.495 | 0.920 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | Unplanned pregnancy | -0.003 | 0.036 | 3917 | 0.032 | 0.940 | 0.982 | -0.032 | 0.035 | 4196 | 0.021 | 0.358 | 0.790 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | C-Section | -0.019 | 0.032 | 3917 | 0.032 | 0.555 | 0.740 | -0.020 | 0.031 | 4196 | 0.020 | 0.525 | 0.749 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | Gestational Age | -0.014 | 0.045 | 3917 | 0.031 | 0.759 | 0.849 | 0.067 | 0.042 | 4196 | 0.022 | 0.113 | 0.213 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | Birth weight | 0.028 | 0.043 | 3917 | 0.032 | 0.522 | 0.657 | 0.013 | 0.043 | 4196 | 0.020 | 0.767 | 0.815 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | Tobacco use | -0.079 | 0.049 | 3917 | 0.032 | 0.105 | 0.402 | -0.074 | 0.048 | 4196 | 0.021 | 0.124 | 0.459 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | Alcohol use | -0.031 | 0.035 | 3917 | 0.032 | 0.378 | 0.720 | 0.012 | 0.035 | 4196 | 0.020 | 0.722 | 0.923 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | Marijuana use | 0.002 | 0.069 | 3917 | 0.032 | 0.976 | 0.998 | 0.076 | 0.068 | 4196 | 0.021 | 0.265 | 0.882 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | Pregnancy complications | -0.005 | 0.031 | 3917 | 0.032 | 0.871 | 0.926 | -0.054 | 0.031 | 4196 | 0.021 | 0.080 | 0.420 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | Birth complications | 0.067 | 0.035 | 3917 | 0.033 | 0.054 | 0.607 | 0.013 | 0.033 | 4196 | 0.020 | 0.689 | 0.920 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | Unplanned pregnancy | -0.070 | 0.037 | 3917 | 0.006 | 0.058 | 0.668 | 0.024 | 0.036 | 4196 | 0.009 | 0.505 | 0.811 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | C-Section | -0.048 | 0.034 | 3917 | 0.005 | 0.152 | 0.401 | 0.014 | 0.032 | 4196 | 0.009 | 0.650 | 0.804 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | Gestational Age | 0.053 | 0.047 | 3917 | 0.005 | 0.252 | 0.365 | 0.088 | 0.043 | 4196 | 0.010 | 0.043 | 0.089 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | Birth weight | 0.074 | 0.045 | 3917 | 0.005 | 0.099 | 0.204 | -0.058 | 0.044 | 4196 | 0.010 | 0.184 | 0.314 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | Tobacco use | 0.028 | 0.051 | 3917 | 0.005 | 0.585 | 0.805 | 0.067 | 0.049 | 4196 | 0.010 | 0.173 | 0.511 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | Alcohol use | -0.007 | 0.037 | 3917 | 0.005 | 0.855 | 0.949 | 0.027 | 0.036 | 4196 | 0.010 | 0.442 | 0.918 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | Marijuana use | -0.100 | 0.072 | 3917 | 0.005 | 0.164 | 0.825 | -0.093 | 0.070 | 4196 | 0.010 | 0.185 | 0.882 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | Pregnancy complications | 0.017 | 0.032 | 3917 | 0.005 | 0.601 | 0.838 | 0.051 | 0.031 | 4196 | 0.010 | 0.104 | 0.440 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | Birth complications | 0.035 | 0.036 | 3917 | 0.005 | 0.334 | 0.715 | 0.057 | 0.033 | 4196 | 0.010 | 0.090 | 0.470 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | Unplanned pregnancy | -0.057 | 0.036 | 3917 | 0.043 | 0.114 | 0.671 | -0.004 | 0.035 | 4196 | 0.040 | 0.911 | 0.992 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | C-Section | 0.049 | 0.033 | 3917 | 0.044 | 0.132 | 0.401 | -0.018 | 0.031 | 4196 | 0.040 | 0.561 | 0.749 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | Gestational Age | 0.095 | 0.045 | 3917 | 0.045 | 0.036 | 0.071 | 0.129 | 0.042 | 4196 | 0.043 | 0.002 | 0.008 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | Birth weight | 0.234 | 0.043 | 3917 | 0.050 | 0.000 | 0.000 | 0.269 | 0.042 | 4196 | 0.050 | 0.000 | 0.000 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | Tobacco use | 0.111 | 0.049 | 3917 | 0.044 | 0.025 | 0.184 | 0.068 | 0.048 | 4196 | 0.041 | 0.154 | 0.475 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | Alcohol use | -0.002 | 0.035 | 3917 | 0.042 | 0.944 | 0.973 | -0.001 | 0.035 | 4196 | 0.040 | 0.974 | 0.995 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | Marijuana use | -0.040 | 0.070 | 3917 | 0.042 | 0.563 | 0.992 | 0.060 | 0.069 | 4196 | 0.041 | 0.383 | 0.882 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | Pregnancy complications | 0.009 | 0.032 | 3917 | 0.042 | 0.776 | 0.894 | 0.029 | 0.031 | 4196 | 0.041 | 0.350 | 0.742 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | Birth complications | 0.016 | 0.035 | 3917 | 0.043 | 0.648 | 0.787 | 0.056 | 0.033 | 4196 | 0.041 | 0.085 | 0.470 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | Unplanned pregnancy | 0.065 | 0.037 | 3917 | 0.004 | 0.079 | 0.668 | -0.028 | 0.036 | 4196 | 0.007 | 0.442 | 0.811 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | C-Section | 0.057 | 0.034 | 3917 | 0.004 | 0.089 | 0.303 | 0.014 | 0.032 | 4196 | 0.007 | 0.649 | 0.804 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | Gestational Age | 0.163 | 0.047 | 3917 | 0.007 | 0.000 | 0.003 | 0.136 | 0.043 | 4196 | 0.011 | 0.002 | 0.007 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | Birth weight | 0.012 | 0.045 | 3917 | 0.003 | 0.786 | 0.876 | 0.035 | 0.044 | 4196 | 0.008 | 0.418 | 0.499 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | Tobacco use | 0.005 | 0.051 | 3917 | 0.003 | 0.918 | 0.942 | 0.051 | 0.049 | 4196 | 0.008 | 0.292 | 0.731 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | Alcohol use | -0.051 | 0.037 | 3917 | 0.004 | 0.165 | 0.591 | -0.076 | 0.035 | 4196 | 0.008 | 0.032 | 0.296 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | Marijuana use | -0.021 | 0.072 | 3917 | 0.003 | 0.769 | 0.998 | 0.012 | 0.070 | 4196 | 0.007 | 0.869 | 0.999 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | Pregnancy complications | 0.039 | 0.032 | 3917 | 0.004 | 0.228 | 0.770 | 0.056 | 0.031 | 4196 | 0.008 | 0.073 | 0.420 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | Birth complications | 0.070 | 0.036 | 3917 | 0.004 | 0.053 | 0.607 | -0.004 | 0.033 | 4196 | 0.007 | 0.899 | 0.955 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | Unplanned pregnancy | -0.018 | 0.037 | 3917 | 0.001 | 0.626 | 0.982 | 0.046 | 0.036 | 4196 | 0.002 | 0.203 | 0.691 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | C-Section | -0.024 | 0.033 | 3917 | 0.001 | 0.462 | 0.642 | -0.009 | 0.032 | 4196 | 0.002 | 0.787 | 0.877 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | Gestational Age | 0.111 | 0.046 | 3917 | 0.003 | 0.016 | 0.044 | 0.028 | 0.043 | 4196 | 0.002 | 0.512 | 0.670 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | Birth weight | -0.030 | 0.044 | 3917 | 0.001 | 0.495 | 0.638 | 0.057 | 0.043 | 4196 | 0.002 | 0.188 | 0.314 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | Tobacco use | 0.036 | 0.050 | 3917 | 0.001 | 0.471 | 0.794 | -0.074 | 0.048 | 4196 | 0.002 | 0.128 | 0.459 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | Alcohol use | 0.027 | 0.036 | 3917 | 0.001 | 0.449 | 0.720 | 0.023 | 0.035 | 4196 | 0.002 | 0.511 | 0.923 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | Marijuana use | 0.044 | 0.071 | 3917 | 0.001 | 0.537 | 0.992 | 0.022 | 0.070 | 4196 | 0.002 | 0.750 | 0.972 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | Pregnancy complications | 0.022 | 0.032 | 3917 | 0.001 | 0.488 | 0.835 | 0.015 | 0.031 | 4196 | 0.002 | 0.620 | 0.824 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | Birth complications | -0.026 | 0.036 | 3917 | 0.001 | 0.458 | 0.715 | -0.035 | 0.033 | 4196 | 0.002 | 0.288 | 0.803 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | Unplanned pregnancy | -0.013 | 0.037 | 3917 | 0.014 | 0.714 | 0.982 | 0.025 | 0.036 | 4196 | 0.006 | 0.496 | 0.811 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | C-Section | 0.048 | 0.033 | 3917 | 0.015 | 0.147 | 0.401 | 0.053 | 0.032 | 4196 | 0.006 | 0.096 | 0.356 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | Gestational Age | 0.113 | 0.046 | 3917 | 0.017 | 0.014 | 0.041 | 0.119 | 0.043 | 4196 | 0.007 | 0.006 | 0.018 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | Birth weight | 0.217 | 0.044 | 3917 | 0.020 | 0.000 | 0.000 | 0.166 | 0.044 | 4196 | 0.009 | 0.000 | 0.001 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | Tobacco use | -0.008 | 0.050 | 3917 | 0.014 | 0.869 | 0.941 | 0.119 | 0.049 | 4196 | 0.007 | 0.015 | 0.102 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | Alcohol use | 0.027 | 0.036 | 3917 | 0.014 | 0.455 | 0.720 | 0.026 | 0.036 | 4196 | 0.006 | 0.459 | 0.918 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | Marijuana use | -0.038 | 0.071 | 3917 | 0.014 | 0.592 | 0.992 | -0.001 | 0.071 | 4196 | 0.005 | 0.989 | 0.999 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | Pregnancy complications | 0.012 | 0.032 | 3917 | 0.014 | 0.700 | 0.874 | 0.014 | 0.032 | 4196 | 0.005 | 0.654 | 0.824 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | Birth complications | 0.040 | 0.036 | 3917 | 0.014 | 0.264 | 0.715 | 0.018 | 0.033 | 4196 | 0.005 | 0.583 | 0.920 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | Unplanned pregnancy | 0.016 | 0.037 | 3917 | 0.023 | 0.664 | 0.982 | -0.014 | 0.036 | 4196 | 0.029 | 0.696 | 0.893 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | C-Section | 0.026 | 0.033 | 3917 | 0.023 | 0.438 | 0.639 | 0.034 | 0.032 | 4196 | 0.029 | 0.290 | 0.654 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | Gestational Age | -0.017 | 0.046 | 3917 | 0.023 | 0.720 | 0.843 | 0.106 | 0.043 | 4196 | 0.030 | 0.014 | 0.035 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | Birth weight | 0.079 | 0.044 | 3917 | 0.024 | 0.073 | 0.160 | -0.046 | 0.044 | 4196 | 0.029 | 0.291 | 0.431 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | Tobacco use | 0.120 | 0.050 | 3917 | 0.024 | 0.017 | 0.184 | 0.044 | 0.049 | 4196 | 0.029 | 0.363 | 0.752 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | Alcohol use | 0.013 | 0.036 | 3917 | 0.023 | 0.721 | 0.862 | -0.027 | 0.035 | 4196 | 0.029 | 0.447 | 0.918 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | Marijuana use | -0.017 | 0.071 | 3917 | 0.023 | 0.808 | 0.998 | -0.027 | 0.070 | 4196 | 0.029 | 0.703 | 0.972 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | Pregnancy complications | 0.020 | 0.032 | 3917 | 0.023 | 0.530 | 0.838 | 0.041 | 0.031 | 4196 | 0.029 | 0.191 | 0.510 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | Birth complications | 0.006 | 0.036 | 3917 | 0.023 | 0.875 | 0.976 | 0.054 | 0.033 | 4196 | 0.029 | 0.104 | 0.470 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | Unplanned pregnancy | 0.043 | 0.036 | 3917 | 0.030 | 0.231 | 0.787 | 0.017 | 0.036 | 4196 | 0.014 | 0.642 | 0.875 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | C-Section | -0.074 | 0.032 | 3917 | 0.032 | 0.023 | 0.140 | -0.021 | 0.031 | 4196 | 0.015 | 0.495 | 0.748 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | Gestational Age | -0.004 | 0.045 | 3917 | 0.030 | 0.935 | 0.949 | -0.191 | 0.042 | 4196 | 0.023 | 0.000 | 0.000 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | Birth weight | -0.108 | 0.043 | 3917 | 0.033 | 0.013 | 0.040 | -0.115 | 0.043 | 4196 | 0.018 | 0.007 | 0.024 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | Tobacco use | -0.173 | 0.049 | 3917 | 0.033 | 0.000 | 0.028 | -0.028 | 0.048 | 4196 | 0.014 | 0.559 | 0.824 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | Alcohol use | 0.029 | 0.035 | 3917 | 0.030 | 0.417 | 0.720 | 0.020 | 0.035 | 4196 | 0.015 | 0.574 | 0.923 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | Marijuana use | 0.042 | 0.069 | 3917 | 0.030 | 0.543 | 0.992 | 0.143 | 0.069 | 4196 | 0.016 | 0.039 | 0.665 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | Pregnancy complications | -0.018 | 0.031 | 3917 | 0.030 | 0.568 | 0.838 | -0.078 | 0.031 | 4196 | 0.017 | 0.012 | 0.207 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | Birth complications | -0.027 | 0.035 | 3917 | 0.030 | 0.441 | 0.715 | -0.056 | 0.033 | 4196 | 0.016 | 0.089 | 0.470 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | Unplanned pregnancy | 0.002 | 0.036 | 3917 | 0.020 | 0.965 | 0.982 | -0.010 | 0.036 | 4196 | 0.020 | 0.789 | 0.926 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | C-Section | 0.042 | 0.033 | 3917 | 0.020 | 0.196 | 0.412 | 0.027 | 0.032 | 4196 | 0.020 | 0.399 | 0.676 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | Gestational Age | -0.215 | 0.046 | 3917 | 0.026 | 0.000 | 0.000 | -0.022 | 0.043 | 4196 | 0.020 | 0.600 | 0.716 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | Birth weight | -0.001 | 0.044 | 3917 | 0.020 | 0.985 | 0.985 | -0.088 | 0.043 | 4196 | 0.021 | 0.042 | 0.092 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | Tobacco use | 0.015 | 0.050 | 3917 | 0.020 | 0.768 | 0.899 | -0.047 | 0.048 | 4196 | 0.020 | 0.336 | 0.736 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | Alcohol use | -0.015 | 0.036 | 3917 | 0.020 | 0.670 | 0.829 | -0.056 | 0.035 | 4196 | 0.021 | 0.109 | 0.598 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | Marijuana use | -0.003 | 0.070 | 3917 | 0.020 | 0.970 | 0.998 | -0.116 | 0.070 | 4196 | 0.021 | 0.097 | 0.882 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | Pregnancy complications | -0.036 | 0.032 | 3917 | 0.021 | 0.260 | 0.770 | 0.005 | 0.031 | 4196 | 0.020 | 0.873 | 0.928 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | Birth complications | -0.060 | 0.036 | 3917 | 0.021 | 0.089 | 0.686 | 0.047 | 0.033 | 4196 | 0.021 | 0.156 | 0.589 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | Unplanned pregnancy | 0.029 | 0.036 | 3917 | 0.058 | 0.418 | 0.948 | -0.047 | 0.035 | 4196 | 0.060 | 0.184 | 0.691 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | C-Section | -0.071 | 0.033 | 3917 | 0.060 | 0.029 | 0.153 | -0.059 | 0.031 | 4196 | 0.060 | 0.055 | 0.249 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | Gestational Age | -0.191 | 0.045 | 3917 | 0.063 | 0.000 | 0.000 | -0.268 | 0.042 | 4196 | 0.067 | 0.000 | 0.000 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | Birth weight | -0.161 | 0.043 | 3917 | 0.061 | 0.000 | 0.001 | -0.192 | 0.042 | 4196 | 0.063 | 0.000 | 0.000 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | Tobacco use | -0.138 | 0.049 | 3917 | 0.060 | 0.005 | 0.087 | 0.016 | 0.048 | 4196 | 0.059 | 0.742 | 0.952 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | Alcohol use | -0.020 | 0.035 | 3917 | 0.058 | 0.573 | 0.779 | 0.053 | 0.034 | 4196 | 0.060 | 0.124 | 0.598 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | Marijuana use | 0.094 | 0.070 | 3917 | 0.059 | 0.178 | 0.825 | 0.025 | 0.068 | 4196 | 0.059 | 0.717 | 0.972 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | Pregnancy complications | -0.030 | 0.032 | 3917 | 0.059 | 0.343 | 0.830 | -0.085 | 0.030 | 4196 | 0.061 | 0.005 | 0.185 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | Birth complications | -0.054 | 0.035 | 3917 | 0.059 | 0.124 | 0.686 | -0.070 | 0.032 | 4196 | 0.061 | 0.032 | 0.362 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | Unplanned pregnancy | 0.027 | 0.037 | 3917 | -0.001 | 0.470 | 0.969 | -0.002 | 0.037 | 4196 | 0.002 | 0.952 | 0.992 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | C-Section | 0.033 | 0.034 | 3917 | 0.000 | 0.324 | 0.538 | 0.033 | 0.032 | 4196 | 0.002 | 0.308 | 0.654 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | Gestational Age | 0.106 | 0.047 | 3917 | 0.001 | 0.024 | 0.052 | 0.180 | 0.044 | 4196 | 0.006 | 0.000 | 0.000 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | Birth weight | 0.082 | 0.045 | 3917 | 0.000 | 0.069 | 0.160 | 0.100 | 0.044 | 4196 | 0.003 | 0.024 | 0.059 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | Tobacco use | 0.016 | 0.051 | 3917 | -0.001 | 0.756 | 0.899 | -0.152 | 0.049 | 4196 | 0.004 | 0.002 | 0.029 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | Alcohol use | 0.005 | 0.037 | 3917 | -0.001 | 0.886 | 0.949 | -0.035 | 0.036 | 4196 | 0.002 | 0.328 | 0.918 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | Marijuana use | 0.087 | 0.072 | 3917 | 0.000 | 0.226 | 0.825 | -0.003 | 0.071 | 4196 | 0.002 | 0.963 | 0.999 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | Pregnancy complications | -0.047 | 0.033 | 3917 | -0.001 | 0.154 | 0.717 | 0.009 | 0.032 | 4196 | 0.002 | 0.778 | 0.896 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | Birth complications | 0.029 | 0.037 | 3917 | -0.001 | 0.420 | 0.715 | 0.019 | 0.034 | 4196 | 0.002 | 0.581 | 0.920 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | Unplanned pregnancy | -0.007 | 0.036 | 3917 | 0.026 | 0.844 | 0.982 | -0.045 | 0.036 | 4196 | 0.039 | 0.203 | 0.691 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | C-Section | -0.038 | 0.033 | 3917 | 0.027 | 0.251 | 0.474 | -0.026 | 0.031 | 4196 | 0.039 | 0.413 | 0.676 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | Gestational Age | -0.220 | 0.046 | 3917 | 0.035 | 0.000 | 0.000 | -0.117 | 0.043 | 4196 | 0.042 | 0.006 | 0.019 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | Birth weight | -0.120 | 0.044 | 3917 | 0.028 | 0.006 | 0.022 | -0.205 | 0.043 | 4196 | 0.045 | 0.000 | 0.000 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | Tobacco use | -0.105 | 0.050 | 3917 | 0.027 | 0.035 | 0.200 | 0.002 | 0.048 | 4196 | 0.039 | 0.969 | 0.985 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | Alcohol use | -0.028 | 0.036 | 3917 | 0.026 | 0.441 | 0.720 | 0.029 | 0.035 | 4196 | 0.039 | 0.413 | 0.918 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | Marijuana use | -0.099 | 0.070 | 3917 | 0.026 | 0.158 | 0.825 | -0.020 | 0.069 | 4196 | 0.039 | 0.772 | 0.972 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | Pregnancy complications | -0.097 | 0.032 | 3917 | 0.029 | 0.002 | 0.053 | -0.015 | 0.031 | 4196 | 0.039 | 0.631 | 0.824 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | Birth complications | -0.071 | 0.036 | 3917 | 0.027 | 0.045 | 0.607 | 0.035 | 0.033 | 4196 | 0.039 | 0.288 | 0.803 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | Unplanned pregnancy | -0.002 | 0.036 | 3917 | 0.008 | 0.953 | 0.982 | -0.048 | 0.036 | 4196 | 0.017 | 0.177 | 0.691 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | C-Section | -0.098 | 0.033 | 3917 | 0.010 | 0.003 | 0.053 | -0.078 | 0.031 | 4196 | 0.017 | 0.013 | 0.109 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | Gestational Age | 0.053 | 0.046 | 3917 | 0.009 | 0.251 | 0.365 | -0.018 | 0.042 | 4196 | 0.016 | 0.664 | 0.779 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | Birth weight | -0.123 | 0.044 | 3917 | 0.009 | 0.005 | 0.017 | -0.087 | 0.043 | 4196 | 0.017 | 0.041 | 0.092 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | Tobacco use | -0.056 | 0.050 | 3917 | 0.009 | 0.262 | 0.686 | -0.007 | 0.048 | 4196 | 0.016 | 0.883 | 0.985 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | Alcohol use | 0.038 | 0.036 | 3917 | 0.009 | 0.282 | 0.683 | 0.095 | 0.035 | 4196 | 0.017 | 0.007 | 0.151 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | Marijuana use | -0.006 | 0.070 | 3917 | 0.008 | 0.931 | 0.998 | 0.054 | 0.069 | 4196 | 0.016 | 0.437 | 0.882 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | Pregnancy complications | 0.013 | 0.032 | 3917 | 0.009 | 0.681 | 0.874 | -0.012 | 0.031 | 4196 | 0.016 | 0.686 | 0.825 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | Birth complications | 0.026 | 0.036 | 3917 | 0.009 | 0.469 | 0.715 | -0.009 | 0.033 | 4196 | 0.016 | 0.786 | 0.934 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | Unplanned pregnancy | 0.010 | 0.037 | 3917 | 0.024 | 0.777 | 0.982 | 0.018 | 0.036 | 4196 | 0.027 | 0.624 | 0.875 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | C-Section | 0.010 | 0.033 | 3917 | 0.024 | 0.764 | 0.838 | -0.001 | 0.032 | 4196 | 0.027 | 0.966 | 0.983 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | Gestational Age | 0.009 | 0.046 | 3917 | 0.024 | 0.852 | 0.891 | 0.001 | 0.043 | 4196 | 0.027 | 0.974 | 0.982 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | Birth weight | 0.014 | 0.044 | 3917 | 0.024 | 0.751 | 0.852 | 0.077 | 0.043 | 4196 | 0.028 | 0.075 | 0.154 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | Tobacco use | 0.076 | 0.051 | 3917 | 0.024 | 0.131 | 0.444 | 0.104 | 0.049 | 4196 | 0.029 | 0.032 | 0.196 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | Alcohol use | -0.032 | 0.036 | 3917 | 0.024 | 0.382 | 0.720 | 0.043 | 0.035 | 4196 | 0.028 | 0.220 | 0.817 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | Marijuana use | 0.036 | 0.071 | 3917 | 0.024 | 0.610 | 0.992 | -0.070 | 0.070 | 4196 | 0.027 | 0.320 | 0.882 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | Pregnancy complications | 0.017 | 0.032 | 3917 | 0.024 | 0.604 | 0.838 | 0.025 | 0.031 | 4196 | 0.027 | 0.424 | 0.786 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | Birth complications | -0.006 | 0.036 | 3917 | 0.024 | 0.864 | 0.976 | 0.006 | 0.033 | 4196 | 0.027 | 0.865 | 0.934 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | Unplanned pregnancy | -0.020 | 0.036 | 3917 | 0.042 | 0.585 | 0.982 | 0.028 | 0.036 | 4196 | 0.034 | 0.435 | 0.811 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | C-Section | -0.025 | 0.033 | 3917 | 0.042 | 0.441 | 0.639 | -0.062 | 0.032 | 4196 | 0.034 | 0.049 | 0.240 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | Gestational Age | -0.079 | 0.045 | 3917 | 0.043 | 0.083 | 0.148 | -0.142 | 0.043 | 4196 | 0.036 | 0.001 | 0.005 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | Birth weight | 0.065 | 0.044 | 3917 | 0.042 | 0.139 | 0.262 | 0.080 | 0.043 | 4196 | 0.034 | 0.066 | 0.140 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | Tobacco use | 0.013 | 0.050 | 3917 | 0.042 | 0.790 | 0.899 | -0.018 | 0.048 | 4196 | 0.033 | 0.713 | 0.933 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | Alcohol use | 0.063 | 0.035 | 3917 | 0.043 | 0.078 | 0.483 | -0.023 | 0.035 | 4196 | 0.034 | 0.517 | 0.923 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | Marijuana use | -0.080 | 0.070 | 3917 | 0.043 | 0.255 | 0.825 | 0.036 | 0.070 | 4196 | 0.034 | 0.608 | 0.972 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | Pregnancy complications | 0.006 | 0.032 | 3917 | 0.042 | 0.847 | 0.926 | -0.045 | 0.031 | 4196 | 0.034 | 0.151 | 0.484 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | Birth complications | -0.050 | 0.035 | 3917 | 0.043 | 0.157 | 0.686 | -0.013 | 0.033 | 4196 | 0.034 | 0.704 | 0.920 |
LME_moderation_loop <-
function(predictors,
outcomes,
moderators,
covars = NULL,
data,
predictorsLab = NULL,
outcomesLab = NULL,
ROI=NULL,
print.model = NULL,
dig = NULL,
Scale=NULL,
is.log10 = FALSE
){
require(dplyr)
interac_names <- c("MainEffect_ID",
"Outcome",
"Label",
'ElementDescription',
"Predictor",
"Beta_Predictor",
'Std.error',
"p_value_Predictor",
'Beta_Sex',
"Std.error_Sex",
"p_value_Sex",
'Beta_interaction',
'Std.error_interaction',
'p_value_interaction',
"Sample_size",
"R2"
)
#Labels
if(!is.null(predictorsLab)){
predictors <- predictors
predictorsLabels <- data.frame(vars = predictors,
names= predictorsLab
,stringsAsFactors = F)
}
if(!is.null(outcomesLab)){
outcomes <- outcomes
outcomesLabels <- data.frame(vars = outcomes,
names= outcomesLab,
ROI=ROI,
stringsAsFactors = F)
}
#Results
main_results <- matrix(NA, nrow = length(predictors)*length(outcomes), ncol = 16) %>% as.data.frame()
colnames(main_results) <- interac_names
#Preparing data
if (is.null(covars)) {
lm.formula <- "outcome.y ~ predictor.x * moderator.x + "
} else{
lm.formula <-
paste("outcome.y ~ predictor.x * moderator.x + ", paste(covars, collapse = "+"))
}
if(is.log10==TRUE){lm.formula <- gsub("outcome.y", "log10(outcome.y)", lm.formula)}
if(isTRUE(Scale)) {lm.formula <- gsub("outcome.y", "scale(outcome.y)", lm.formula)}
iID <- 0
for(i in outcomes){
for(j in predictors){
iID <- iID+1
data$outcome.y <- data[,i]
data$predictor.x <- data[,j]
data$moderator.x <- data[,moderators]
if (is.null(covars)) {
data1 <- data[ complete.cases( data[,c("outcome.y", "predictor.x")] ), ]#covars
} else{
data1 <- data[ complete.cases( data[,c("outcome.y", "predictor.x", covars)] ), ]#covars
}
main_results$Sample_size [iID] <- nrow(data1)
main_results$MainEffect_ID [iID] <- iID
main_results$Outcome [iID] <- i
if(!is.null(outcomesLab)){
main_results$Label [iID] <- outcomesLabels[outcomesLabels$vars== i,"names"]
main_results$ElementDescription [iID] <- outcomesLabels[outcomesLabels$vars== i,"ROI"]
}
if(!is.null(predictorsLab)){
main_results$Predictor [iID] <- predictorsLabels[predictorsLabels$vars== j,"names"]
}else{main_results$Predictor [iID] <- j}
if(nrow(data1)<15)next
formula.random="~(1|mri_info_deviceserialnumber/rel_family_id)"
model.loop = gamm4::gamm4(
as.formula(lm.formula),
random = as.formula(formula.random),
weights = NULL,
data = data1
)
main_results$Beta_Predictor [iID] <- summary(model.loop$gam)$p.table[2,1]
main_results$Std.error [iID] <- summary(model.loop$gam)$p.table[2,2]
main_results$p_value_Predictor [iID] <- summary(model.loop$gam)$p.table[2,4]
main_results$Beta_Sex [iID] <- summary(model.loop$gam)$p.table[3,1]
main_results$Std.error_Sex [iID] <- summary(model.loop$gam)$p.table[3,2]
main_results$p_value_Sex [iID] <- summary(model.loop$gam)$p.table[3,4]
interact_row <- nrow(summary(model.loop$gam)$p.table)
main_results$Beta_interaction [iID] <- summary(model.loop$gam)$p.table[interact_row,1]
main_results$Std.error_interaction [iID] <- summary(model.loop$gam)$p.table[interact_row,2]
main_results$p_value_interaction [iID] <- summary(model.loop$gam)$p.table[interact_row,4]
main_results$R2 [iID] <- summary(model.loop$gam)$r.sq %>% round(3)
if (!is.null(print.model)) {
print(i)
print(j)
print(summary(model.loop$gam)$p.table)
}
}
}
main_results <<- main_results
}
ModerationResults_CVol <-
LME_moderation_loop(
predictors = "A_Prenatal_Burden_Score_z",
moderators = 'sex',
outcomes = CVol_outcomes,
outcomesLab = CvolMRI_outcomes_Labels,
ROI = CvolROIs,
Scale = T,
covars = c(covars.x,'smri_vol_scs_intracranialv_z'),
data = rbind(abcd.f,abcd.m)
)
ModerationResults_SubCorticalVol <-
LME_moderation_loop(
predictors = "A_Prenatal_Burden_Score_z",
moderators = 'sex',
outcomes = SubCortical_outcomes,
outcomesLab = SubCortical_outcomes_Labels,
ROI = subROIs,
Scale = T,
covars = c(covars.x,'smri_vol_scs_intracranialv_z'),
data = rbind(abcd.f,abcd.m)
)
ModerationResults_CortThick <-
LME_moderation_loop(
predictors = "A_Prenatal_Burden_Score_z",
moderators = 'sex',
outcomes = CortThick_outcomes,
outcomesLab = CortThick_outcomes_Labels,
ROI = CortThickROIs,
Scale = T,
covars = c(covars.x,'smri_thick_cdk_mean_z'),
data = rbind(abcd.f,abcd.m)
)
ModerationResults_CortArea <-
LME_moderation_loop(
predictors = "A_Prenatal_Burden_Score_z",
moderators = 'sex',
outcomes = CortArea_outcomes,
outcomesLab = CortArea_outcomes_Labels,
ROI = CortAreaROIs,
Scale = T,
covars = c(covars.x,'smri_area_cdk_total_z'),
data = rbind(abcd.f,abcd.m)
)
ModerationResults_SulcalDepth <-
LME_moderation_loop(
predictors = "A_Prenatal_Burden_Score_z",
moderators = 'sex',
outcomes = SulcalDepth_outcomes,
outcomesLab = SulcalDepth_outcomes_Labels,
ROI = SulcalDepthROIs,
Scale = T,
covars = c(covars.x,'smri_sulc_cdk_mean_z'),
data = rbind(abcd.f,abcd.m)
)
ModerationResults <- rbind(ModerationResults_CVol,
ModerationResults_SubCorticalVol,
ModerationResults_CortThick,
ModerationResults_CortArea,
ModerationResults_SulcalDepth
)
ModerationResults$Data_Modality <- c(rep("Cortical volume", 68),
rep('Subcortical volume', 20),
rep("Cortical thickness", 68),
rep("Cortical area", 68),
rep("Sulcal depth", 68)
)
ModerationResults$FDR <- NA
for( i in c("Cortical volume",
'Subcortical volume',
"Cortical thickness",
"Cortical area",
"Sulcal depth")
){
ModerationResults[which(ModerationResults$Data_Modality==i),]$FDR <-
p.adjust(
ModerationResults[ModerationResults$Data_Modality==i,]$p_value_interaction,
"fdr"
)
}
# Saving eTable8
write.xlsx(x = ModerationResults[,-c(1, 3)],
file = "eSupp_SexSpecific associations of adverse prenatal burden exposure in childrens brain.xlsx",
sheetName = 'eTable8',
row.names = F,
showNA = F,
append = T
)
kable(ModerationResults[,-c(1, 3)],#Omit iID and Aliases
caption = "eTable8. Interactions between Prenatal Adverse Exposures and Sex on Brain Structure",
digits = 3,
row.names = F)%>%
kableExtra::kable_styling(position = "center")
| Outcome | ElementDescription | Predictor | Beta_Predictor | Std.error | p_value_Predictor | Beta_Sex | Std.error_Sex | p_value_Sex | Beta_interaction | Std.error_interaction | p_value_interaction | Sample_size | R2 | Data_Modality | FDR |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| smri_vol_cdk_banksstslh | Cortical volume lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.030 | 0.015 | 0.042 | 0.453 | 0.081 | 0.000 | 0.007 | 0.020 | 0.740 | 8113 | 0.159 | Cortical volume | 0.975 |
| smri_vol_cdk_cdacatelh | Cortical volume lh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.020 | 0.015 | 0.186 | 0.188 | 0.042 | 0.000 | -0.006 | 0.020 | 0.751 | 8113 | 0.145 | Cortical volume | 0.975 |
| smri_vol_cdk_cdmdfrlh | Cortical volume lh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | 0.005 | 0.014 | 0.732 | 0.387 | 0.092 | 0.000 | -0.027 | 0.019 | 0.156 | 8113 | 0.211 | Cortical volume | 0.883 |
| smri_vol_cdk_cuneuslh | Cortical volume lh-cuneus | A_Prenatal_Burden_Score_z | -0.018 | 0.014 | 0.205 | 0.479 | 0.076 | 0.000 | 0.022 | 0.019 | 0.245 | 8113 | 0.161 | Cortical volume | 0.883 |
| smri_vol_cdk_ehinallh | Cortical volume lh-entorhinal | A_Prenatal_Burden_Score_z | -0.006 | 0.015 | 0.711 | 0.481 | 0.062 | 0.000 | 0.002 | 0.020 | 0.917 | 8113 | 0.146 | Cortical volume | 0.975 |
| smri_vol_cdk_fusiformlh | Cortical volume lh-fusiform | A_Prenatal_Burden_Score_z | -0.002 | 0.012 | 0.860 | 0.682 | 0.087 | 0.000 | -0.014 | 0.017 | 0.407 | 8113 | 0.340 | Cortical volume | 0.883 |
| smri_vol_cdk_ifpllh | Cortical volume lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.035 | 0.013 | 0.009 | 0.502 | 0.078 | 0.000 | 0.004 | 0.018 | 0.806 | 8113 | 0.265 | Cortical volume | 0.975 |
| smri_vol_cdk_iftmlh | Cortical volume lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.002 | 0.012 | 0.870 | 0.635 | 0.093 | 0.000 | 0.009 | 0.017 | 0.604 | 8113 | 0.327 | Cortical volume | 0.975 |
| smri_vol_cdk_ihcatelh | Cortical volume lh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.002 | 0.013 | 0.851 | 0.687 | 0.066 | 0.000 | 0.002 | 0.018 | 0.926 | 8113 | 0.303 | Cortical volume | 0.975 |
| smri_vol_cdk_locclh | Cortical volume lh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.016 | 0.013 | 0.201 | 0.707 | 0.055 | 0.000 | 0.003 | 0.017 | 0.869 | 8113 | 0.381 | Cortical volume | 0.975 |
| smri_vol_cdk_lobfrlh | Cortical volume lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.008 | 0.011 | 0.498 | 0.599 | 0.073 | 0.000 | -0.019 | 0.015 | 0.212 | 8113 | 0.459 | Cortical volume | 0.883 |
| smri_vol_cdk_linguallh | Cortical volume lh-lingual | A_Prenatal_Burden_Score_z | -0.029 | 0.014 | 0.034 | 0.481 | 0.082 | 0.000 | 0.027 | 0.018 | 0.136 | 8113 | 0.213 | Cortical volume | 0.883 |
| smri_vol_cdk_mobfrlh | Cortical volume lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.037 | 0.012 | 0.002 | 0.613 | 0.105 | 0.000 | -0.048 | 0.016 | 0.003 | 8113 | 0.164 | Cortical volume | 0.207 |
| smri_vol_cdk_mdtmlh | Cortical volume lh-middletemporal | A_Prenatal_Burden_Score_z | -0.036 | 0.012 | 0.003 | 0.639 | 0.073 | 0.000 | 0.003 | 0.016 | 0.836 | 8113 | 0.391 | Cortical volume | 0.975 |
| smri_vol_cdk_parahpallh | Cortical volume lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.023 | 0.015 | 0.125 | 0.203 | 0.067 | 0.002 | -0.015 | 0.020 | 0.450 | 8113 | 0.130 | Cortical volume | 0.883 |
| smri_vol_cdk_paracnlh | Cortical volume lh-paracentral | A_Prenatal_Burden_Score_z | -0.018 | 0.014 | 0.203 | 0.381 | 0.063 | 0.000 | -0.026 | 0.019 | 0.173 | 8113 | 0.239 | Cortical volume | 0.883 |
| smri_vol_cdk_parsopclh | Cortical volume lh-parsopercularis | A_Prenatal_Burden_Score_z | -0.009 | 0.015 | 0.535 | 0.350 | 0.068 | 0.000 | 0.015 | 0.020 | 0.451 | 8113 | 0.164 | Cortical volume | 0.883 |
| smri_vol_cdk_parsobislh | Cortical volume lh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.013 | 0.014 | 0.345 | 0.519 | 0.074 | 0.000 | -0.026 | 0.019 | 0.170 | 8113 | 0.242 | Cortical volume | 0.883 |
| smri_vol_cdk_parstgrislh | Cortical volume lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.006 | 0.015 | 0.664 | 0.491 | 0.067 | 0.000 | -0.019 | 0.020 | 0.352 | 8113 | 0.156 | Cortical volume | 0.883 |
| smri_vol_cdk_pericclh | Cortical volume lh-pericalcarine | A_Prenatal_Burden_Score_z | -0.025 | 0.015 | 0.083 | 0.286 | 0.047 | 0.000 | 0.020 | 0.020 | 0.308 | 8113 | 0.140 | Cortical volume | 0.883 |
| smri_vol_cdk_postcnlh | Cortical volume lh-postcentral | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 0.625 | 0.551 | 0.069 | 0.000 | -0.020 | 0.017 | 0.236 | 8113 | 0.365 | Cortical volume | 0.883 |
| smri_vol_cdk_ptcatelh | Cortical volume lh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.005 | 0.013 | 0.724 | 0.541 | 0.058 | 0.000 | -0.005 | 0.018 | 0.770 | 8113 | 0.314 | Cortical volume | 0.975 |
| smri_vol_cdk_precnlh | Cortical volume lh-precentral | A_Prenatal_Burden_Score_z | -0.003 | 0.012 | 0.826 | 0.676 | 0.077 | 0.000 | -0.038 | 0.016 | 0.020 | 8113 | 0.389 | Cortical volume | 0.618 |
| smri_vol_cdk_pclh | Cortical volume lh-precuneus | A_Prenatal_Burden_Score_z | -0.013 | 0.012 | 0.280 | 0.633 | 0.071 | 0.000 | 0.000 | 0.016 | 1.000 | 8113 | 0.427 | Cortical volume | 1.000 |
| smri_vol_cdk_rracatelh | Cortical volume lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.022 | 0.013 | 0.095 | 0.438 | 0.068 | 0.000 | 0.004 | 0.018 | 0.840 | 8113 | 0.302 | Cortical volume | 0.975 |
| smri_vol_cdk_rrmdfrlh | Cortical volume lh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | -0.003 | 0.012 | 0.832 | 0.700 | 0.073 | 0.000 | 0.002 | 0.017 | 0.899 | 8113 | 0.380 | Cortical volume | 0.975 |
| smri_vol_cdk_sufrlh | Cortical volume lh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.003 | 0.011 | 0.771 | 0.678 | 0.084 | 0.000 | -0.022 | 0.015 | 0.147 | 8113 | 0.409 | Cortical volume | 0.883 |
| smri_vol_cdk_supllh | Cortical volume lh-superiorparietal | A_Prenatal_Burden_Score_z | -0.033 | 0.013 | 0.011 | 0.469 | 0.080 | 0.000 | 0.016 | 0.018 | 0.370 | 8113 | 0.306 | Cortical volume | 0.883 |
| smri_vol_cdk_sutmlh | Cortical volume lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.002 | 0.012 | 0.869 | 0.636 | 0.076 | 0.000 | -0.008 | 0.017 | 0.644 | 8113 | 0.378 | Cortical volume | 0.975 |
| smri_vol_cdk_smlh | Cortical volume lh-supramarginal | A_Prenatal_Burden_Score_z | -0.013 | 0.013 | 0.322 | 0.634 | 0.064 | 0.000 | -0.009 | 0.018 | 0.618 | 8113 | 0.315 | Cortical volume | 0.975 |
| smri_vol_cdk_frpolelh | Cortical volume lh-frontalpole | A_Prenatal_Burden_Score_z | 0.038 | 0.015 | 0.009 | 0.489 | 0.071 | 0.000 | -0.029 | 0.020 | 0.143 | 8113 | 0.158 | Cortical volume | 0.883 |
| smri_vol_cdk_tmpolelh | Cortical volume lh-temporalpole | A_Prenatal_Burden_Score_z | 0.023 | 0.015 | 0.120 | 0.463 | 0.089 | 0.000 | 0.016 | 0.020 | 0.429 | 8113 | 0.118 | Cortical volume | 0.883 |
| smri_vol_cdk_trvtmlh | Cortical volume lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.005 | 0.014 | 0.740 | 0.356 | 0.050 | 0.000 | -0.017 | 0.020 | 0.398 | 8113 | 0.188 | Cortical volume | 0.883 |
| smri_vol_cdk_insulalh | Cortical volume lh-insula | A_Prenatal_Burden_Score_z | -0.048 | 0.012 | 0.000 | 0.704 | 0.084 | 0.000 | 0.017 | 0.016 | 0.273 | 8113 | 0.386 | Cortical volume | 0.883 |
| smri_vol_cdk_banksstsrh | Cortical volume rh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.006 | 0.014 | 0.656 | 0.462 | 0.088 | 0.000 | -0.028 | 0.019 | 0.145 | 8113 | 0.189 | Cortical volume | 0.883 |
| smri_vol_cdk_cdacaterh | Cortical volume rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.003 | 0.015 | 0.864 | 0.279 | 0.074 | 0.000 | 0.011 | 0.021 | 0.607 | 8113 | 0.108 | Cortical volume | 0.975 |
| smri_vol_cdk_cdmdfrrh | Cortical volume rh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.015 | 0.014 | 0.296 | 0.360 | 0.089 | 0.000 | 0.006 | 0.019 | 0.743 | 8113 | 0.194 | Cortical volume | 0.975 |
| smri_vol_cdk_cuneusrh | Cortical volume rh-cuneus | A_Prenatal_Burden_Score_z | -0.003 | 0.014 | 0.809 | 0.503 | 0.033 | 0.000 | 0.018 | 0.019 | 0.347 | 8113 | 0.236 | Cortical volume | 0.883 |
| smri_vol_cdk_ehinalrh | Cortical volume rh-entorhinal | A_Prenatal_Burden_Score_z | 0.028 | 0.015 | 0.065 | 0.429 | 0.035 | 0.000 | -0.019 | 0.020 | 0.341 | 8113 | 0.143 | Cortical volume | 0.883 |
| smri_vol_cdk_fusiformrh | Cortical volume rh-fusiform | A_Prenatal_Burden_Score_z | -0.004 | 0.012 | 0.755 | 0.762 | 0.067 | 0.000 | -0.015 | 0.016 | 0.355 | 8113 | 0.442 | Cortical volume | 0.883 |
| smri_vol_cdk_ifplrh | Cortical volume rh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.021 | 0.013 | 0.093 | 0.700 | 0.082 | 0.000 | -0.001 | 0.017 | 0.974 | 8113 | 0.331 | Cortical volume | 0.994 |
| smri_vol_cdk_iftmrh | Cortical volume rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.004 | 0.012 | 0.732 | 0.687 | 0.081 | 0.000 | 0.012 | 0.016 | 0.481 | 8113 | 0.369 | Cortical volume | 0.884 |
| smri_vol_cdk_ihcaterh | Cortical volume rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.029 | 0.014 | 0.035 | 0.546 | 0.087 | 0.000 | -0.012 | 0.019 | 0.510 | 8113 | 0.220 | Cortical volume | 0.890 |
| smri_vol_cdk_loccrh | Cortical volume rh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.002 | 0.012 | 0.868 | 0.731 | 0.044 | 0.000 | 0.016 | 0.016 | 0.335 | 8113 | 0.431 | Cortical volume | 0.883 |
| smri_vol_cdk_lobfrrh | Cortical volume rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.022 | 0.011 | 0.047 | 0.606 | 0.095 | 0.000 | -0.007 | 0.015 | 0.644 | 8113 | 0.316 | Cortical volume | 0.975 |
| smri_vol_cdk_lingualrh | Cortical volume rh-lingual | A_Prenatal_Burden_Score_z | -0.019 | 0.014 | 0.171 | 0.445 | 0.063 | 0.000 | 0.002 | 0.019 | 0.920 | 8113 | 0.242 | Cortical volume | 0.975 |
| smri_vol_cdk_mobfrrh | Cortical volume rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.028 | 0.012 | 0.021 | 0.638 | 0.092 | 0.000 | -0.012 | 0.017 | 0.480 | 8113 | 0.327 | Cortical volume | 0.884 |
| smri_vol_cdk_mdtmrh | Cortical volume rh-middletemporal | A_Prenatal_Burden_Score_z | -0.036 | 0.011 | 0.002 | 0.670 | 0.077 | 0.000 | -0.011 | 0.015 | 0.454 | 8113 | 0.438 | Cortical volume | 0.883 |
| smri_vol_cdk_parahpalrh | Cortical volume rh-parahippocampal | A_Prenatal_Burden_Score_z | 0.009 | 0.015 | 0.523 | 0.263 | 0.045 | 0.000 | 0.006 | 0.020 | 0.754 | 8113 | 0.178 | Cortical volume | 0.975 |
| smri_vol_cdk_paracnrh | Cortical volume rh-paracentral | A_Prenatal_Burden_Score_z | -0.015 | 0.014 | 0.279 | 0.432 | 0.082 | 0.000 | 0.007 | 0.019 | 0.731 | 8113 | 0.209 | Cortical volume | 0.975 |
| smri_vol_cdk_parsopcrh | Cortical volume rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.003 | 0.015 | 0.849 | 0.401 | 0.070 | 0.000 | -0.004 | 0.020 | 0.839 | 8113 | 0.171 | Cortical volume | 0.975 |
| smri_vol_cdk_parsobisrh | Cortical volume rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.016 | 0.014 | 0.255 | 0.535 | 0.069 | 0.000 | -0.041 | 0.019 | 0.027 | 8113 | 0.243 | Cortical volume | 0.618 |
| smri_vol_cdk_parstgrisrh | Cortical volume rh-parstriangularis | A_Prenatal_Burden_Score_z | -0.007 | 0.015 | 0.630 | 0.510 | 0.068 | 0.000 | -0.026 | 0.020 | 0.194 | 8113 | 0.150 | Cortical volume | 0.883 |
| smri_vol_cdk_periccrh | Cortical volume rh-pericalcarine | A_Prenatal_Burden_Score_z | -0.024 | 0.014 | 0.091 | 0.309 | 0.038 | 0.000 | 0.022 | 0.019 | 0.254 | 8113 | 0.158 | Cortical volume | 0.883 |
| smri_vol_cdk_postcnrh | Cortical volume rh-postcentral | A_Prenatal_Burden_Score_z | -0.029 | 0.013 | 0.023 | 0.514 | 0.076 | 0.000 | -0.018 | 0.017 | 0.304 | 8113 | 0.331 | Cortical volume | 0.883 |
| smri_vol_cdk_ptcaterh | Cortical volume rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.019 | 0.013 | 0.147 | 0.513 | 0.086 | 0.000 | -0.017 | 0.018 | 0.340 | 8113 | 0.259 | Cortical volume | 0.883 |
| smri_vol_cdk_precnrh | Cortical volume rh-precentral | A_Prenatal_Burden_Score_z | -0.005 | 0.013 | 0.671 | 0.610 | 0.086 | 0.000 | -0.005 | 0.017 | 0.755 | 8113 | 0.330 | Cortical volume | 0.975 |
| smri_vol_cdk_pcrh | Cortical volume rh-precuneus | A_Prenatal_Burden_Score_z | 0.005 | 0.011 | 0.654 | 0.679 | 0.077 | 0.000 | -0.015 | 0.015 | 0.339 | 8113 | 0.427 | Cortical volume | 0.883 |
| smri_vol_cdk_rracaterh | Cortical volume rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.029 | 0.014 | 0.044 | 0.370 | 0.087 | 0.000 | 0.013 | 0.019 | 0.509 | 8113 | 0.177 | Cortical volume | 0.890 |
| smri_vol_cdk_rrmdfrrh | Cortical volume rh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.017 | 0.013 | 0.191 | 0.658 | 0.085 | 0.000 | -0.028 | 0.017 | 0.107 | 8113 | 0.315 | Cortical volume | 0.883 |
| smri_vol_cdk_sufrrh | Cortical volume rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.005 | 0.012 | 0.693 | 0.655 | 0.089 | 0.000 | -0.006 | 0.016 | 0.719 | 8113 | 0.372 | Cortical volume | 0.975 |
| smri_vol_cdk_suplrh | Cortical volume rh-superiorparietal | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 0.647 | 0.524 | 0.084 | 0.000 | -0.014 | 0.017 | 0.423 | 8113 | 0.299 | Cortical volume | 0.883 |
| smri_vol_cdk_sutmrh | Cortical volume rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.007 | 0.012 | 0.557 | 0.513 | 0.091 | 0.000 | 0.002 | 0.016 | 0.905 | 8113 | 0.322 | Cortical volume | 0.975 |
| smri_vol_cdk_smrh | Cortical volume rh-supramarginal | A_Prenatal_Burden_Score_z | -0.016 | 0.013 | 0.237 | 0.542 | 0.072 | 0.000 | -0.021 | 0.018 | 0.238 | 8113 | 0.282 | Cortical volume | 0.883 |
| smri_vol_cdk_frpolerh | Cortical volume rh-frontalpole | A_Prenatal_Burden_Score_z | 0.039 | 0.014 | 0.007 | 0.460 | 0.081 | 0.000 | -0.002 | 0.020 | 0.932 | 8113 | 0.149 | Cortical volume | 0.975 |
| smri_vol_cdk_tmpolerh | Cortical volume rh-temporalpole | A_Prenatal_Burden_Score_z | 0.038 | 0.015 | 0.011 | 0.393 | 0.038 | 0.000 | -0.001 | 0.020 | 0.980 | 8113 | 0.157 | Cortical volume | 0.994 |
| smri_vol_cdk_trvtmrh | Cortical volume rh-transversetemporal | A_Prenatal_Burden_Score_z | -0.023 | 0.014 | 0.100 | 0.367 | 0.091 | 0.000 | -0.005 | 0.019 | 0.809 | 8113 | 0.153 | Cortical volume | 0.975 |
| smri_vol_cdk_insularh | Cortical volume rh-insula | A_Prenatal_Burden_Score_z | -0.035 | 0.012 | 0.003 | 0.755 | 0.073 | 0.000 | 0.004 | 0.016 | 0.808 | 8113 | 0.419 | Cortical volume | 0.975 |
| smri_vol_scs_ltventriclelh | smri_vol_scs_ltventriclelh | A_Prenatal_Burden_Score_z | 0.039 | 0.015 | 0.008 | 0.270 | 0.066 | 0.000 | -0.025 | 0.020 | 0.221 | 8113 | 0.110 | Subcortical volume | 0.809 |
| smri_vol_scs_crbcortexlh | smri_vol_scs_crbcortexlh | A_Prenatal_Burden_Score_z | -0.026 | 0.011 | 0.018 | 0.819 | 0.071 | 0.000 | 0.021 | 0.015 | 0.161 | 8113 | 0.453 | Subcortical volume | 0.809 |
| smri_vol_scs_tplh | smri_vol_scs_tplh | A_Prenatal_Burden_Score_z | -0.025 | 0.011 | 0.022 | 0.730 | 0.064 | 0.000 | 0.016 | 0.015 | 0.260 | 8113 | 0.518 | Subcortical volume | 0.809 |
| smri_vol_scs_caudatelh | smri_vol_scs_caudatelh | A_Prenatal_Burden_Score_z | -0.020 | 0.013 | 0.113 | 0.398 | 0.074 | 0.000 | 0.006 | 0.017 | 0.738 | 8113 | 0.284 | Subcortical volume | 0.865 |
| smri_vol_scs_putamenlh | smri_vol_scs_putamenlh | A_Prenatal_Burden_Score_z | -0.014 | 0.013 | 0.274 | 0.702 | 0.063 | 0.000 | 0.009 | 0.018 | 0.609 | 8113 | 0.291 | Subcortical volume | 0.865 |
| smri_vol_scs_pallidumlh | smri_vol_scs_pallidumlh | A_Prenatal_Burden_Score_z | -0.014 | 0.013 | 0.284 | 0.616 | 0.047 | 0.000 | 0.015 | 0.018 | 0.400 | 8113 | 0.338 | Subcortical volume | 0.865 |
| smri_vol_scs_hpuslh | smri_vol_scs_hpuslh | A_Prenatal_Burden_Score_z | 0.006 | 0.012 | 0.586 | 0.682 | 0.050 | 0.000 | 0.000 | 0.016 | 0.997 | 8113 | 0.445 | Subcortical volume | 0.997 |
| smri_vol_scs_amygdalalh | smri_vol_scs_amygdalalh | A_Prenatal_Burden_Score_z | -0.025 | 0.012 | 0.041 | 0.648 | 0.070 | 0.000 | 0.034 | 0.017 | 0.037 | 8113 | 0.377 | Subcortical volume | 0.743 |
| smri_vol_scs_aal | smri_vol_scs_aal | A_Prenatal_Burden_Score_z | -0.019 | 0.013 | 0.137 | 0.632 | 0.094 | 0.000 | -0.011 | 0.017 | 0.538 | 8113 | 0.245 | Subcortical volume | 0.865 |
| smri_vol_scs_vedclh | smri_vol_scs_vedclh | A_Prenatal_Burden_Score_z | 0.004 | 0.010 | 0.666 | 0.790 | 0.078 | 0.000 | -0.008 | 0.014 | 0.571 | 8113 | 0.508 | Subcortical volume | 0.865 |
| smri_vol_scs_ltventriclerh | smri_vol_scs_ltventriclerh | A_Prenatal_Burden_Score_z | 0.032 | 0.015 | 0.029 | 0.300 | 0.065 | 0.000 | 0.006 | 0.020 | 0.778 | 8113 | 0.117 | Subcortical volume | 0.865 |
| smri_vol_scs_crbcortexrh | smri_vol_scs_crbcortexrh | A_Prenatal_Burden_Score_z | -0.024 | 0.011 | 0.031 | 0.839 | 0.077 | 0.000 | 0.015 | 0.015 | 0.305 | 8113 | 0.436 | Subcortical volume | 0.809 |
| smri_vol_scs_tprh | smri_vol_scs_tprh | A_Prenatal_Burden_Score_z | -0.035 | 0.011 | 0.001 | 0.768 | 0.066 | 0.000 | 0.021 | 0.014 | 0.143 | 8113 | 0.531 | Subcortical volume | 0.809 |
| smri_vol_scs_caudaterh | smri_vol_scs_caudaterh | A_Prenatal_Burden_Score_z | -0.015 | 0.013 | 0.221 | 0.385 | 0.078 | 0.000 | 0.000 | 0.017 | 0.983 | 8113 | 0.293 | Subcortical volume | 0.997 |
| smri_vol_scs_putamenrh | smri_vol_scs_putamenrh | A_Prenatal_Burden_Score_z | -0.004 | 0.013 | 0.773 | 0.716 | 0.056 | 0.000 | 0.007 | 0.017 | 0.696 | 8113 | 0.335 | Subcortical volume | 0.865 |
| smri_vol_scs_pallidumrh | smri_vol_scs_pallidumrh | A_Prenatal_Burden_Score_z | -0.018 | 0.013 | 0.173 | 0.636 | 0.070 | 0.000 | 0.005 | 0.018 | 0.758 | 8113 | 0.321 | Subcortical volume | 0.865 |
| smri_vol_scs_hpusrh | smri_vol_scs_hpusrh | A_Prenatal_Burden_Score_z | -0.008 | 0.012 | 0.485 | 0.644 | 0.039 | 0.000 | 0.005 | 0.016 | 0.771 | 8113 | 0.422 | Subcortical volume | 0.865 |
| smri_vol_scs_amygdalarh | smri_vol_scs_amygdalarh | A_Prenatal_Burden_Score_z | 0.002 | 0.012 | 0.875 | 0.750 | 0.039 | 0.000 | 0.018 | 0.017 | 0.267 | 8113 | 0.418 | Subcortical volume | 0.809 |
| smri_vol_scs_aar | smri_vol_scs_aar | A_Prenatal_Burden_Score_z | -0.028 | 0.013 | 0.034 | 0.550 | 0.074 | 0.000 | 0.018 | 0.018 | 0.324 | 8113 | 0.266 | Subcortical volume | 0.809 |
| smri_vol_scs_vedcrh | smri_vol_scs_vedcrh | A_Prenatal_Burden_Score_z | 0.013 | 0.010 | 0.205 | 0.812 | 0.076 | 0.000 | -0.010 | 0.014 | 0.468 | 8113 | 0.522 | Subcortical volume | 0.865 |
| smri_thick_cdk_banksstslh | Cortical thickness lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.042 | 0.014 | 0.003 | -0.105 | 0.055 | 0.057 | 0.012 | 0.019 | 0.520 | 8113 | 0.248 | Cortical thickness | 0.821 |
| smri_thick_cdk_cdacatelh | Cortical thickness lh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.010 | 0.015 | 0.519 | -0.138 | 0.070 | 0.050 | 0.001 | 0.021 | 0.946 | 8113 | 0.070 | Cortical thickness | 0.953 |
| smri_thick_cdk_cdmdfrlh | Cortical thickness lh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.014 | 0.012 | 0.243 | -0.175 | 0.074 | 0.017 | 0.003 | 0.016 | 0.850 | 8113 | 0.413 | Cortical thickness | 0.924 |
| smri_thick_cdk_cuneuslh | Cortical thickness lh-cuneus | A_Prenatal_Burden_Score_z | -0.020 | 0.013 | 0.127 | 0.095 | 0.059 | 0.109 | 0.043 | 0.018 | 0.016 | 8113 | 0.312 | Cortical thickness | 0.373 |
| smri_thick_cdk_ehinallh | Cortical thickness lh-entorhinal | A_Prenatal_Burden_Score_z | 0.032 | 0.015 | 0.034 | 0.010 | 0.080 | 0.901 | -0.046 | 0.021 | 0.025 | 8113 | 0.078 | Cortical thickness | 0.393 |
| smri_thick_cdk_fusiformlh | Cortical thickness lh-fusiform | A_Prenatal_Burden_Score_z | 0.017 | 0.012 | 0.152 | -0.132 | 0.080 | 0.098 | -0.015 | 0.016 | 0.354 | 8113 | 0.416 | Cortical thickness | 0.821 |
| smri_thick_cdk_ifpllh | Cortical thickness lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.016 | 0.010 | 0.125 | -0.142 | 0.068 | 0.036 | -0.002 | 0.014 | 0.869 | 8113 | 0.556 | Cortical thickness | 0.924 |
| smri_thick_cdk_iftmlh | Cortical thickness lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.001 | 0.012 | 0.962 | 0.010 | 0.067 | 0.886 | 0.011 | 0.017 | 0.508 | 8113 | 0.404 | Cortical thickness | 0.821 |
| smri_thick_cdk_ihcatelh | Cortical thickness lh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.007 | 0.015 | 0.635 | 0.080 | 0.043 | 0.066 | 0.016 | 0.021 | 0.442 | 8113 | 0.094 | Cortical thickness | 0.821 |
| smri_thick_cdk_locclh | Cortical thickness lh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.011 | 0.010 | 0.270 | 0.006 | 0.077 | 0.942 | 0.002 | 0.013 | 0.865 | 8113 | 0.539 | Cortical thickness | 0.924 |
| smri_thick_cdk_lobfrlh | Cortical thickness lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.063 | 0.013 | 0.000 | 0.056 | 0.060 | 0.347 | -0.024 | 0.018 | 0.172 | 8113 | 0.342 | Cortical thickness | 0.614 |
| smri_thick_cdk_linguallh | Cortical thickness lh-lingual | A_Prenatal_Burden_Score_z | -0.021 | 0.013 | 0.088 | 0.131 | 0.088 | 0.137 | 0.054 | 0.017 | 0.001 | 8113 | 0.323 | Cortical thickness | 0.091 |
| smri_thick_cdk_mobfrlh | Cortical thickness lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.043 | 0.015 | 0.003 | 0.040 | 0.105 | 0.701 | -0.007 | 0.020 | 0.711 | 8113 | 0.110 | Cortical thickness | 0.905 |
| smri_thick_cdk_mdtmlh | Cortical thickness lh-middletemporal | A_Prenatal_Burden_Score_z | -0.049 | 0.012 | 0.000 | -0.041 | 0.071 | 0.565 | 0.006 | 0.016 | 0.702 | 8113 | 0.429 | Cortical thickness | 0.905 |
| smri_thick_cdk_parahpallh | Cortical thickness lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.028 | 0.015 | 0.067 | -0.269 | 0.062 | 0.000 | -0.007 | 0.020 | 0.718 | 8113 | 0.110 | Cortical thickness | 0.905 |
| smri_thick_cdk_paracnlh | Cortical thickness lh-paracentral | A_Prenatal_Burden_Score_z | 0.004 | 0.012 | 0.720 | -0.234 | 0.044 | 0.000 | -0.036 | 0.016 | 0.029 | 8113 | 0.445 | Cortical thickness | 0.393 |
| smri_thick_cdk_parsopclh | Cortical thickness lh-parsopercularis | A_Prenatal_Burden_Score_z | 0.023 | 0.013 | 0.074 | -0.077 | 0.045 | 0.084 | -0.014 | 0.017 | 0.434 | 8113 | 0.385 | Cortical thickness | 0.821 |
| smri_thick_cdk_parsobislh | Cortical thickness lh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.010 | 0.014 | 0.472 | -0.240 | 0.061 | 0.000 | -0.014 | 0.019 | 0.460 | 8113 | 0.243 | Cortical thickness | 0.821 |
| smri_thick_cdk_parstgrislh | Cortical thickness lh-parstriangularis | A_Prenatal_Burden_Score_z | -0.020 | 0.013 | 0.130 | -0.116 | 0.054 | 0.031 | -0.012 | 0.018 | 0.511 | 8113 | 0.338 | Cortical thickness | 0.821 |
| smri_thick_cdk_pericclh | Cortical thickness lh-pericalcarine | A_Prenatal_Burden_Score_z | -0.002 | 0.013 | 0.856 | -0.033 | 0.066 | 0.614 | 0.030 | 0.018 | 0.102 | 8113 | 0.271 | Cortical thickness | 0.535 |
| smri_thick_cdk_postcnlh | Cortical thickness lh-postcentral | A_Prenatal_Burden_Score_z | -0.005 | 0.012 | 0.694 | -0.125 | 0.063 | 0.047 | -0.009 | 0.016 | 0.562 | 8113 | 0.436 | Cortical thickness | 0.821 |
| smri_thick_cdk_ptcatelh | Cortical thickness lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.000 | 0.015 | 0.992 | -0.013 | 0.061 | 0.831 | -0.003 | 0.020 | 0.894 | 8113 | 0.129 | Cortical thickness | 0.936 |
| smri_thick_cdk_precnlh | Cortical thickness lh-precentral | A_Prenatal_Burden_Score_z | -0.001 | 0.011 | 0.949 | -0.139 | 0.042 | 0.001 | -0.028 | 0.015 | 0.072 | 8113 | 0.511 | Cortical thickness | 0.535 |
| smri_thick_cdk_pclh | Cortical thickness lh-precuneus | A_Prenatal_Burden_Score_z | -0.017 | 0.011 | 0.110 | -0.024 | 0.058 | 0.677 | 0.016 | 0.014 | 0.278 | 8113 | 0.550 | Cortical thickness | 0.821 |
| smri_thick_cdk_rracatelh | Cortical thickness lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.018 | 0.015 | 0.220 | -0.198 | 0.086 | 0.021 | 0.017 | 0.020 | 0.399 | 8113 | 0.117 | Cortical thickness | 0.821 |
| smri_thick_cdk_rrmdfrlh | Cortical thickness lh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | -0.004 | 0.011 | 0.732 | 0.009 | 0.059 | 0.875 | 0.011 | 0.014 | 0.445 | 8113 | 0.539 | Cortical thickness | 0.821 |
| smri_thick_cdk_sufrlh | Cortical thickness lh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.009 | 0.010 | 0.370 | -0.216 | 0.056 | 0.000 | -0.009 | 0.014 | 0.502 | 8113 | 0.581 | Cortical thickness | 0.821 |
| smri_thick_cdk_supllh | Cortical thickness lh-superiorparietal | A_Prenatal_Burden_Score_z | -0.012 | 0.010 | 0.231 | -0.040 | 0.058 | 0.493 | -0.004 | 0.013 | 0.770 | 8113 | 0.603 | Cortical thickness | 0.924 |
| smri_thick_cdk_sutmlh | Cortical thickness lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.004 | 0.011 | 0.735 | -0.145 | 0.061 | 0.017 | 0.009 | 0.015 | 0.567 | 8113 | 0.484 | Cortical thickness | 0.821 |
| smri_thick_cdk_smlh | Cortical thickness lh-supramarginal | A_Prenatal_Burden_Score_z | 0.002 | 0.011 | 0.856 | -0.188 | 0.070 | 0.007 | -0.020 | 0.015 | 0.163 | 8113 | 0.525 | Cortical thickness | 0.614 |
| smri_thick_cdk_frpolelh | Cortical thickness lh-frontalpole | A_Prenatal_Burden_Score_z | 0.063 | 0.015 | 0.000 | -0.040 | 0.060 | 0.506 | -0.032 | 0.021 | 0.119 | 8113 | 0.106 | Cortical thickness | 0.579 |
| smri_thick_cdk_tmpolelh | Cortical thickness lh-temporalpole | A_Prenatal_Burden_Score_z | 0.022 | 0.015 | 0.140 | -0.048 | 0.067 | 0.472 | 0.014 | 0.020 | 0.488 | 8113 | 0.144 | Cortical thickness | 0.821 |
| smri_thick_cdk_trvtmlh | Cortical thickness lh-transversetemporal | A_Prenatal_Burden_Score_z | -0.043 | 0.014 | 0.002 | -0.261 | 0.043 | 0.000 | 0.032 | 0.019 | 0.091 | 8113 | 0.275 | Cortical thickness | 0.535 |
| smri_thick_cdk_insulalh | Cortical thickness lh-insula | A_Prenatal_Burden_Score_z | 0.005 | 0.014 | 0.740 | 0.079 | 0.102 | 0.440 | -0.018 | 0.019 | 0.357 | 8113 | 0.119 | Cortical thickness | 0.821 |
| smri_thick_cdk_banksstsrh | Cortical thickness rh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.012 | 0.014 | 0.411 | -0.081 | 0.043 | 0.060 | -0.005 | 0.019 | 0.781 | 8113 | 0.245 | Cortical thickness | 0.924 |
| smri_thick_cdk_cdacaterh | Cortical thickness rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.020 | 0.016 | 0.211 | -0.076 | 0.055 | 0.168 | 0.029 | 0.021 | 0.171 | 8113 | 0.049 | Cortical thickness | 0.614 |
| smri_thick_cdk_cdmdfrrh | Cortical thickness rh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.009 | 0.012 | 0.486 | -0.181 | 0.063 | 0.004 | 0.002 | 0.017 | 0.926 | 8113 | 0.401 | Cortical thickness | 0.953 |
| smri_thick_cdk_cuneusrh | Cortical thickness rh-cuneus | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 0.641 | 0.068 | 0.045 | 0.127 | 0.026 | 0.017 | 0.143 | 8113 | 0.361 | Cortical thickness | 0.608 |
| smri_thick_cdk_ehinalrh | Cortical thickness rh-entorhinal | A_Prenatal_Burden_Score_z | 0.039 | 0.015 | 0.012 | -0.133 | 0.068 | 0.051 | -0.059 | 0.021 | 0.004 | 8113 | 0.083 | Cortical thickness | 0.152 |
| smri_thick_cdk_fusiformrh | Cortical thickness rh-fusiform | A_Prenatal_Burden_Score_z | -0.008 | 0.012 | 0.475 | -0.088 | 0.048 | 0.069 | 0.004 | 0.016 | 0.796 | 8113 | 0.464 | Cortical thickness | 0.924 |
| smri_thick_cdk_ifplrh | Cortical thickness rh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.000 | 0.010 | 0.986 | -0.119 | 0.062 | 0.053 | -0.013 | 0.014 | 0.331 | 8113 | 0.585 | Cortical thickness | 0.821 |
| smri_thick_cdk_iftmrh | Cortical thickness rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.003 | 0.012 | 0.833 | -0.008 | 0.049 | 0.869 | 0.007 | 0.016 | 0.647 | 8113 | 0.447 | Cortical thickness | 0.880 |
| smri_thick_cdk_ihcaterh | Cortical thickness rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.001 | 0.016 | 0.946 | 0.005 | 0.054 | 0.921 | 0.043 | 0.021 | 0.042 | 8113 | 0.059 | Cortical thickness | 0.426 |
| smri_thick_cdk_loccrh | Cortical thickness rh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.016 | 0.009 | 0.088 | -0.007 | 0.073 | 0.927 | -0.003 | 0.013 | 0.819 | 8113 | 0.565 | Cortical thickness | 0.924 |
| smri_thick_cdk_lobfrrh | Cortical thickness rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.042 | 0.013 | 0.002 | -0.006 | 0.092 | 0.945 | -0.008 | 0.018 | 0.672 | 8113 | 0.264 | Cortical thickness | 0.896 |
| smri_thick_cdk_lingualrh | Cortical thickness rh-lingual | A_Prenatal_Burden_Score_z | -0.017 | 0.013 | 0.173 | 0.111 | 0.075 | 0.142 | 0.018 | 0.017 | 0.297 | 8113 | 0.358 | Cortical thickness | 0.821 |
| smri_thick_cdk_mobfrrh | Cortical thickness rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.043 | 0.014 | 0.003 | -0.011 | 0.098 | 0.913 | 0.017 | 0.019 | 0.386 | 8113 | 0.147 | Cortical thickness | 0.821 |
| smri_thick_cdk_mdtmrh | Cortical thickness rh-middletemporal | A_Prenatal_Burden_Score_z | -0.044 | 0.011 | 0.000 | -0.058 | 0.073 | 0.431 | 0.001 | 0.015 | 0.953 | 8113 | 0.467 | Cortical thickness | 0.953 |
| smri_thick_cdk_parahpalrh | Cortical thickness rh-parahippocampal | A_Prenatal_Burden_Score_z | 0.019 | 0.015 | 0.201 | -0.317 | 0.045 | 0.000 | -0.005 | 0.020 | 0.787 | 8113 | 0.167 | Cortical thickness | 0.924 |
| smri_thick_cdk_paracnrh | Cortical thickness rh-paracentral | A_Prenatal_Burden_Score_z | -0.009 | 0.012 | 0.457 | -0.180 | 0.065 | 0.006 | -0.010 | 0.017 | 0.546 | 8113 | 0.407 | Cortical thickness | 0.821 |
| smri_thick_cdk_parsopcrh | Cortical thickness rh-parsopercularis | A_Prenatal_Burden_Score_z | 0.019 | 0.013 | 0.154 | -0.138 | 0.040 | 0.001 | 0.019 | 0.018 | 0.301 | 8113 | 0.338 | Cortical thickness | 0.821 |
| smri_thick_cdk_parsobisrh | Cortical thickness rh-parsorbitalis | A_Prenatal_Burden_Score_z | -0.017 | 0.014 | 0.218 | -0.297 | 0.079 | 0.000 | -0.012 | 0.019 | 0.527 | 8113 | 0.232 | Cortical thickness | 0.821 |
| smri_thick_cdk_parstgrisrh | Cortical thickness rh-parstriangularis | A_Prenatal_Burden_Score_z | 0.007 | 0.013 | 0.602 | -0.116 | 0.063 | 0.067 | -0.003 | 0.018 | 0.842 | 8113 | 0.349 | Cortical thickness | 0.924 |
| smri_thick_cdk_periccrh | Cortical thickness rh-pericalcarine | A_Prenatal_Burden_Score_z | -0.017 | 0.014 | 0.203 | 0.008 | 0.060 | 0.888 | 0.034 | 0.019 | 0.068 | 8113 | 0.253 | Cortical thickness | 0.535 |
| smri_thick_cdk_postcnrh | Cortical thickness rh-postcentral | A_Prenatal_Burden_Score_z | -0.031 | 0.013 | 0.016 | -0.150 | 0.066 | 0.024 | 0.028 | 0.017 | 0.102 | 8113 | 0.360 | Cortical thickness | 0.535 |
| smri_thick_cdk_ptcaterh | Cortical thickness rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.013 | 0.015 | 0.394 | -0.013 | 0.062 | 0.835 | 0.019 | 0.021 | 0.364 | 8113 | 0.108 | Cortical thickness | 0.821 |
| smri_thick_cdk_precnrh | Cortical thickness rh-precentral | A_Prenatal_Burden_Score_z | -0.006 | 0.013 | 0.656 | -0.128 | 0.031 | 0.000 | -0.022 | 0.017 | 0.202 | 8113 | 0.389 | Cortical thickness | 0.686 |
| smri_thick_cdk_pcrh | Cortical thickness rh-precuneus | A_Prenatal_Burden_Score_z | -0.007 | 0.011 | 0.486 | -0.089 | 0.066 | 0.177 | 0.029 | 0.014 | 0.044 | 8113 | 0.536 | Cortical thickness | 0.426 |
| smri_thick_cdk_rracaterh | Cortical thickness rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.001 | 0.015 | 0.948 | -0.071 | 0.090 | 0.435 | 0.035 | 0.021 | 0.090 | 8113 | 0.059 | Cortical thickness | 0.535 |
| smri_thick_cdk_rrmdfrrh | Cortical thickness rh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.010 | 0.011 | 0.390 | -0.015 | 0.078 | 0.851 | -0.008 | 0.015 | 0.579 | 8113 | 0.455 | Cortical thickness | 0.821 |
| smri_thick_cdk_sufrrh | Cortical thickness rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.010 | 0.010 | 0.331 | -0.216 | 0.080 | 0.007 | -0.013 | 0.014 | 0.357 | 8113 | 0.494 | Cortical thickness | 0.821 |
| smri_thick_cdk_suplrh | Cortical thickness rh-superiorparietal | A_Prenatal_Burden_Score_z | -0.017 | 0.010 | 0.085 | -0.071 | 0.063 | 0.263 | 0.011 | 0.014 | 0.412 | 8113 | 0.591 | Cortical thickness | 0.821 |
| smri_thick_cdk_sutmrh | Cortical thickness rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.011 | 0.011 | 0.347 | -0.108 | 0.043 | 0.013 | 0.023 | 0.016 | 0.132 | 8113 | 0.490 | Cortical thickness | 0.599 |
| smri_thick_cdk_smrh | Cortical thickness rh-supramarginal | A_Prenatal_Burden_Score_z | -0.001 | 0.011 | 0.951 | -0.114 | 0.080 | 0.157 | -0.003 | 0.015 | 0.854 | 8113 | 0.484 | Cortical thickness | 0.924 |
| smri_thick_cdk_frpolerh | Cortical thickness rh-frontalpole | A_Prenatal_Burden_Score_z | 0.058 | 0.015 | 0.000 | -0.097 | 0.070 | 0.169 | -0.010 | 0.021 | 0.632 | 8113 | 0.100 | Cortical thickness | 0.877 |
| smri_thick_cdk_tmpolerh | Cortical thickness rh-temporalpole | A_Prenatal_Burden_Score_z | 0.020 | 0.015 | 0.167 | -0.069 | 0.068 | 0.315 | -0.012 | 0.020 | 0.561 | 8113 | 0.160 | Cortical thickness | 0.821 |
| smri_thick_cdk_trvtmrh | Cortical thickness rh-transversetemporal | A_Prenatal_Burden_Score_z | -0.019 | 0.014 | 0.161 | -0.158 | 0.092 | 0.087 | 0.020 | 0.019 | 0.296 | 8113 | 0.188 | Cortical thickness | 0.821 |
| smri_thick_cdk_insularh | Cortical thickness rh-insula | A_Prenatal_Burden_Score_z | -0.002 | 0.014 | 0.890 | 0.094 | 0.087 | 0.277 | -0.018 | 0.019 | 0.353 | 8113 | 0.169 | Cortical thickness | 0.821 |
| smri_area_cdk_banksstslh | Cortical area lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.021 | 0.014 | 0.137 | 0.472 | 0.042 | 0.000 | 0.001 | 0.019 | 0.963 | 8113 | 0.277 | Cortical area | 0.988 |
| smri_area_cdk_cdacatelh | Cortical area lh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.024 | 0.014 | 0.080 | 0.269 | 0.042 | 0.000 | 0.000 | 0.019 | 0.988 | 8113 | 0.258 | Cortical area | 0.988 |
| smri_area_cdk_cdmdfrlh | Cortical area lh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | 0.027 | 0.012 | 0.028 | 0.476 | 0.027 | 0.000 | -0.032 | 0.017 | 0.059 | 8113 | 0.431 | Cortical area | 0.709 |
| smri_area_cdk_cuneuslh | Cortical area lh-cuneus | A_Prenatal_Burden_Score_z | -0.007 | 0.014 | 0.631 | 0.556 | 0.042 | 0.000 | 0.002 | 0.018 | 0.924 | 8113 | 0.272 | Cortical area | 0.988 |
| smri_area_cdk_ehinallh | Cortical area lh-entorhinal | A_Prenatal_Burden_Score_z | -0.015 | 0.015 | 0.312 | 0.426 | 0.043 | 0.000 | 0.011 | 0.021 | 0.593 | 8113 | 0.130 | Cortical area | 0.942 |
| smri_area_cdk_fusiformlh | Cortical area lh-fusiform | A_Prenatal_Burden_Score_z | -0.003 | 0.011 | 0.746 | 0.794 | 0.037 | 0.000 | -0.005 | 0.014 | 0.744 | 8113 | 0.565 | Cortical area | 0.982 |
| smri_area_cdk_ifpllh | Cortical area lh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.023 | 0.012 | 0.065 | 0.559 | 0.031 | 0.000 | 0.007 | 0.017 | 0.665 | 8113 | 0.436 | Cortical area | 0.942 |
| smri_area_cdk_iftmlh | Cortical area lh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.001 | 0.011 | 0.948 | 0.683 | 0.035 | 0.000 | 0.001 | 0.015 | 0.930 | 8113 | 0.549 | Cortical area | 0.988 |
| smri_area_cdk_ihcatelh | Cortical area lh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.010 | 0.012 | 0.430 | 0.683 | 0.045 | 0.000 | -0.008 | 0.017 | 0.630 | 8113 | 0.399 | Cortical area | 0.942 |
| smri_area_cdk_locclh | Cortical area lh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.017 | 0.012 | 0.146 | 0.775 | 0.037 | 0.000 | 0.007 | 0.016 | 0.665 | 8113 | 0.468 | Cortical area | 0.942 |
| smri_area_cdk_lobfrlh | Cortical area lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.015 | 0.010 | 0.140 | 0.633 | 0.059 | 0.000 | -0.013 | 0.014 | 0.360 | 8113 | 0.579 | Cortical area | 0.940 |
| smri_area_cdk_linguallh | Cortical area lh-lingual | A_Prenatal_Burden_Score_z | -0.020 | 0.013 | 0.130 | 0.501 | 0.062 | 0.000 | 0.009 | 0.018 | 0.594 | 8113 | 0.302 | Cortical area | 0.942 |
| smri_area_cdk_mobfrlh | Cortical area lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.025 | 0.011 | 0.029 | 0.660 | 0.058 | 0.000 | -0.044 | 0.015 | 0.004 | 8113 | 0.499 | Cortical area | 0.252 |
| smri_area_cdk_mdtmlh | Cortical area lh-middletemporal | A_Prenatal_Burden_Score_z | -0.007 | 0.010 | 0.478 | 0.667 | 0.040 | 0.000 | 0.002 | 0.014 | 0.880 | 8113 | 0.573 | Cortical area | 0.988 |
| smri_area_cdk_parahpallh | Cortical area lh-parahippocampal | A_Prenatal_Burden_Score_z | 0.003 | 0.014 | 0.838 | 0.461 | 0.052 | 0.000 | -0.013 | 0.019 | 0.477 | 8113 | 0.251 | Cortical area | 0.942 |
| smri_area_cdk_paracnlh | Cortical area lh-paracentral | A_Prenatal_Burden_Score_z | -0.003 | 0.013 | 0.834 | 0.516 | 0.031 | 0.000 | -0.015 | 0.017 | 0.402 | 8113 | 0.380 | Cortical area | 0.940 |
| smri_area_cdk_parsopclh | Cortical area lh-parsopercularis | A_Prenatal_Burden_Score_z | -0.006 | 0.014 | 0.646 | 0.418 | 0.025 | 0.000 | 0.020 | 0.019 | 0.293 | 8113 | 0.291 | Cortical area | 0.907 |
| smri_area_cdk_parsobislh | Cortical area lh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.033 | 0.012 | 0.006 | 0.700 | 0.045 | 0.000 | -0.015 | 0.016 | 0.350 | 8113 | 0.470 | Cortical area | 0.940 |
| smri_area_cdk_parstgrislh | Cortical area lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.003 | 0.013 | 0.800 | 0.593 | 0.028 | 0.000 | -0.011 | 0.018 | 0.563 | 8113 | 0.311 | Cortical area | 0.942 |
| smri_area_cdk_pericclh | Cortical area lh-pericalcarine | A_Prenatal_Burden_Score_z | -0.024 | 0.014 | 0.097 | 0.326 | 0.051 | 0.000 | 0.005 | 0.019 | 0.780 | 8113 | 0.160 | Cortical area | 0.982 |
| smri_area_cdk_postcnlh | Cortical area lh-postcentral | A_Prenatal_Burden_Score_z | 0.004 | 0.010 | 0.717 | 0.704 | 0.041 | 0.000 | -0.012 | 0.014 | 0.381 | 8113 | 0.606 | Cortical area | 0.940 |
| smri_area_cdk_ptcatelh | Cortical area lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.005 | 0.013 | 0.666 | 0.575 | 0.046 | 0.000 | 0.001 | 0.017 | 0.944 | 8113 | 0.401 | Cortical area | 0.988 |
| smri_area_cdk_precnlh | Cortical area lh-precentral | A_Prenatal_Burden_Score_z | 0.010 | 0.010 | 0.317 | 0.746 | 0.043 | 0.000 | -0.021 | 0.014 | 0.145 | 8113 | 0.583 | Cortical area | 0.709 |
| smri_area_cdk_pclh | Cortical area lh-precuneus | A_Prenatal_Burden_Score_z | 0.006 | 0.010 | 0.544 | 0.666 | 0.050 | 0.000 | -0.006 | 0.014 | 0.655 | 8113 | 0.573 | Cortical area | 0.942 |
| smri_area_cdk_rracatelh | Cortical area lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.011 | 0.012 | 0.331 | 0.562 | 0.046 | 0.000 | -0.003 | 0.016 | 0.848 | 8113 | 0.475 | Cortical area | 0.988 |
| smri_area_cdk_rrmdfrlh | Cortical area lh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.015 | 0.011 | 0.165 | 0.720 | 0.032 | 0.000 | -0.004 | 0.014 | 0.778 | 8113 | 0.576 | Cortical area | 0.982 |
| smri_area_cdk_sufrlh | Cortical area lh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.025 | 0.009 | 0.007 | 0.728 | 0.017 | 0.000 | -0.023 | 0.013 | 0.063 | 8113 | 0.676 | Cortical area | 0.709 |
| smri_area_cdk_supllh | Cortical area lh-superiorparietal | A_Prenatal_Burden_Score_z | -0.014 | 0.012 | 0.234 | 0.484 | 0.031 | 0.000 | 0.021 | 0.016 | 0.178 | 8113 | 0.478 | Cortical area | 0.709 |
| smri_area_cdk_sutmlh | Cortical area lh-superiortemporal | A_Prenatal_Burden_Score_z | 0.009 | 0.010 | 0.374 | 0.752 | 0.025 | 0.000 | -0.022 | 0.014 | 0.115 | 8113 | 0.602 | Cortical area | 0.709 |
| smri_area_cdk_smlh | Cortical area lh-supramarginal | A_Prenatal_Burden_Score_z | -0.006 | 0.012 | 0.645 | 0.678 | 0.027 | 0.000 | 0.000 | 0.017 | 0.983 | 8113 | 0.439 | Cortical area | 0.988 |
| smri_area_cdk_frpolelh | Cortical area lh-frontalpole | A_Prenatal_Burden_Score_z | 0.018 | 0.013 | 0.140 | 0.658 | 0.053 | 0.000 | -0.008 | 0.017 | 0.617 | 8113 | 0.402 | Cortical area | 0.942 |
| smri_area_cdk_tmpolelh | Cortical area lh-temporalpole | A_Prenatal_Burden_Score_z | 0.012 | 0.013 | 0.344 | 0.737 | 0.051 | 0.000 | 0.014 | 0.017 | 0.415 | 8113 | 0.355 | Cortical area | 0.940 |
| smri_area_cdk_trvtmlh | Cortical area lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.030 | 0.014 | 0.031 | 0.457 | 0.038 | 0.000 | -0.025 | 0.019 | 0.188 | 8113 | 0.274 | Cortical area | 0.709 |
| smri_area_cdk_insulalh | Cortical area lh-insula | A_Prenatal_Burden_Score_z | -0.039 | 0.011 | 0.001 | 0.700 | 0.062 | 0.000 | 0.026 | 0.015 | 0.096 | 8113 | 0.476 | Cortical area | 0.709 |
| smri_area_cdk_banksstsrh | Cortical area rh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | 0.017 | 0.013 | 0.207 | 0.508 | 0.047 | 0.000 | -0.024 | 0.018 | 0.177 | 8113 | 0.341 | Cortical area | 0.709 |
| smri_area_cdk_cdacaterh | Cortical area rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.006 | 0.014 | 0.667 | 0.364 | 0.031 | 0.000 | 0.005 | 0.019 | 0.799 | 8113 | 0.252 | Cortical area | 0.988 |
| smri_area_cdk_cdmdfrrh | Cortical area rh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | 0.006 | 0.013 | 0.636 | 0.434 | 0.029 | 0.000 | 0.008 | 0.017 | 0.656 | 8113 | 0.401 | Cortical area | 0.942 |
| smri_area_cdk_cuneusrh | Cortical area rh-cuneus | A_Prenatal_Burden_Score_z | 0.003 | 0.013 | 0.829 | 0.585 | 0.046 | 0.000 | 0.009 | 0.018 | 0.610 | 8113 | 0.319 | Cortical area | 0.942 |
| smri_area_cdk_ehinalrh | Cortical area rh-entorhinal | A_Prenatal_Burden_Score_z | 0.008 | 0.015 | 0.594 | 0.502 | 0.059 | 0.000 | 0.000 | 0.020 | 0.987 | 8113 | 0.157 | Cortical area | 0.988 |
| smri_area_cdk_fusiformrh | Cortical area rh-fusiform | A_Prenatal_Burden_Score_z | 0.009 | 0.010 | 0.380 | 0.857 | 0.048 | 0.000 | -0.011 | 0.014 | 0.454 | 8113 | 0.572 | Cortical area | 0.942 |
| smri_area_cdk_ifplrh | Cortical area rh-inferiorparietal | A_Prenatal_Burden_Score_z | -0.018 | 0.012 | 0.121 | 0.737 | 0.030 | 0.000 | 0.006 | 0.016 | 0.696 | 8113 | 0.490 | Cortical area | 0.966 |
| smri_area_cdk_iftmrh | Cortical area rh-inferiortemporal | A_Prenatal_Burden_Score_z | 0.014 | 0.010 | 0.168 | 0.754 | 0.027 | 0.000 | -0.004 | 0.014 | 0.756 | 8113 | 0.581 | Cortical area | 0.982 |
| smri_area_cdk_ihcaterh | Cortical area rh-isthmuscingulate | A_Prenatal_Burden_Score_z | -0.025 | 0.013 | 0.055 | 0.598 | 0.040 | 0.000 | -0.022 | 0.018 | 0.206 | 8113 | 0.367 | Cortical area | 0.737 |
| smri_area_cdk_loccrh | Cortical area rh-lateraloccipital | A_Prenatal_Burden_Score_z | -0.003 | 0.012 | 0.801 | 0.797 | 0.023 | 0.000 | 0.029 | 0.016 | 0.071 | 8113 | 0.476 | Cortical area | 0.709 |
| smri_area_cdk_lobfrrh | Cortical area rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.028 | 0.011 | 0.008 | 0.636 | 0.060 | 0.000 | -0.006 | 0.014 | 0.656 | 8113 | 0.549 | Cortical area | 0.942 |
| smri_area_cdk_lingualrh | Cortical area rh-lingual | A_Prenatal_Burden_Score_z | -0.014 | 0.013 | 0.277 | 0.447 | 0.066 | 0.000 | 0.001 | 0.018 | 0.961 | 8113 | 0.291 | Cortical area | 0.988 |
| smri_area_cdk_mobfrrh | Cortical area rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | 0.020 | 0.010 | 0.059 | 0.704 | 0.054 | 0.000 | -0.019 | 0.014 | 0.173 | 8113 | 0.568 | Cortical area | 0.709 |
| smri_area_cdk_mdtmrh | Cortical area rh-middletemporal | A_Prenatal_Burden_Score_z | -0.007 | 0.009 | 0.478 | 0.708 | 0.040 | 0.000 | -0.010 | 0.013 | 0.430 | 8113 | 0.652 | Cortical area | 0.942 |
| smri_area_cdk_parahpalrh | Cortical area rh-parahippocampal | A_Prenatal_Burden_Score_z | 0.002 | 0.014 | 0.877 | 0.533 | 0.055 | 0.000 | -0.002 | 0.019 | 0.917 | 8113 | 0.265 | Cortical area | 0.988 |
| smri_area_cdk_paracnrh | Cortical area rh-paracentral | A_Prenatal_Burden_Score_z | 0.002 | 0.013 | 0.849 | 0.536 | 0.031 | 0.000 | 0.015 | 0.018 | 0.395 | 8113 | 0.371 | Cortical area | 0.940 |
| smri_area_cdk_parsopcrh | Cortical area rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.002 | 0.013 | 0.893 | 0.493 | 0.033 | 0.000 | -0.012 | 0.018 | 0.527 | 8113 | 0.322 | Cortical area | 0.942 |
| smri_area_cdk_parsobisrh | Cortical area rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.033 | 0.012 | 0.007 | 0.723 | 0.044 | 0.000 | -0.025 | 0.016 | 0.129 | 8113 | 0.436 | Cortical area | 0.709 |
| smri_area_cdk_parstgrisrh | Cortical area rh-parstriangularis | A_Prenatal_Burden_Score_z | 0.002 | 0.014 | 0.909 | 0.590 | 0.032 | 0.000 | -0.029 | 0.019 | 0.120 | 8113 | 0.297 | Cortical area | 0.709 |
| smri_area_cdk_periccrh | Cortical area rh-pericalcarine | A_Prenatal_Burden_Score_z | -0.022 | 0.014 | 0.114 | 0.344 | 0.055 | 0.000 | 0.018 | 0.019 | 0.357 | 8113 | 0.175 | Cortical area | 0.940 |
| smri_area_cdk_postcnrh | Cortical area rh-postcentral | A_Prenatal_Burden_Score_z | -0.008 | 0.011 | 0.428 | 0.661 | 0.045 | 0.000 | -0.023 | 0.014 | 0.104 | 8113 | 0.565 | Cortical area | 0.709 |
| smri_area_cdk_ptcaterh | Cortical area rh-posteriorcingulate | A_Prenatal_Burden_Score_z | -0.012 | 0.012 | 0.341 | 0.550 | 0.044 | 0.000 | -0.025 | 0.017 | 0.137 | 8113 | 0.422 | Cortical area | 0.709 |
| smri_area_cdk_precnrh | Cortical area rh-precentral | A_Prenatal_Burden_Score_z | 0.010 | 0.011 | 0.366 | 0.692 | 0.046 | 0.000 | 0.010 | 0.015 | 0.499 | 8113 | 0.544 | Cortical area | 0.942 |
| smri_area_cdk_pcrh | Cortical area rh-precuneus | A_Prenatal_Burden_Score_z | 0.022 | 0.010 | 0.030 | 0.717 | 0.047 | 0.000 | -0.027 | 0.014 | 0.045 | 8113 | 0.604 | Cortical area | 0.709 |
| smri_area_cdk_rracaterh | Cortical area rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | -0.017 | 0.013 | 0.184 | 0.493 | 0.031 | 0.000 | 0.005 | 0.017 | 0.771 | 8113 | 0.391 | Cortical area | 0.982 |
| smri_area_cdk_rrmdfrrh | Cortical area rh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.028 | 0.011 | 0.009 | 0.675 | 0.034 | 0.000 | -0.020 | 0.015 | 0.184 | 8113 | 0.547 | Cortical area | 0.709 |
| smri_area_cdk_sufrrh | Cortical area rh-superiorfrontal | A_Prenatal_Burden_Score_z | 0.016 | 0.010 | 0.094 | 0.701 | 0.025 | 0.000 | -0.007 | 0.013 | 0.615 | 8113 | 0.651 | Cortical area | 0.942 |
| smri_area_cdk_suplrh | Cortical area rh-superiorparietal | A_Prenatal_Burden_Score_z | 0.017 | 0.011 | 0.138 | 0.548 | 0.041 | 0.000 | -0.019 | 0.016 | 0.232 | 8113 | 0.496 | Cortical area | 0.790 |
| smri_area_cdk_sutmrh | Cortical area rh-superiortemporal | A_Prenatal_Burden_Score_z | 0.009 | 0.010 | 0.357 | 0.623 | 0.029 | 0.000 | -0.014 | 0.013 | 0.271 | 8113 | 0.635 | Cortical area | 0.877 |
| smri_area_cdk_smrh | Cortical area rh-supramarginal | A_Prenatal_Burden_Score_z | -0.002 | 0.012 | 0.895 | 0.587 | 0.034 | 0.000 | -0.022 | 0.016 | 0.172 | 8113 | 0.450 | Cortical area | 0.709 |
| smri_area_cdk_frpolerh | Cortical area rh-frontalpole | A_Prenatal_Burden_Score_z | 0.022 | 0.013 | 0.081 | 0.639 | 0.044 | 0.000 | -0.003 | 0.017 | 0.861 | 8113 | 0.384 | Cortical area | 0.988 |
| smri_area_cdk_tmpolerh | Cortical area rh-temporalpole | A_Prenatal_Burden_Score_z | 0.038 | 0.013 | 0.004 | 0.638 | 0.063 | 0.000 | 0.001 | 0.018 | 0.975 | 8113 | 0.304 | Cortical area | 0.988 |
| smri_area_cdk_trvtmrh | Cortical area rh-transversetemporal | A_Prenatal_Burden_Score_z | -0.001 | 0.013 | 0.911 | 0.483 | 0.029 | 0.000 | -0.011 | 0.017 | 0.525 | 8113 | 0.373 | Cortical area | 0.942 |
| smri_area_cdk_insularh | Cortical area rh-insula | A_Prenatal_Burden_Score_z | -0.025 | 0.012 | 0.033 | 0.746 | 0.044 | 0.000 | 0.014 | 0.016 | 0.371 | 8113 | 0.464 | Cortical area | 0.940 |
| smri_sulc_cdk_banksstslh | Sulcal depth lh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.027 | 0.016 | 0.093 | -0.318 | 0.038 | 0.000 | 0.006 | 0.022 | 0.784 | 8113 | 0.029 | Sulcal depth | 0.988 |
| smri_sulc_cdk_cdacatelh | Sulcal depth lh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | -0.012 | 0.016 | 0.431 | -0.311 | 0.046 | 0.000 | 0.017 | 0.022 | 0.418 | 8113 | 0.052 | Sulcal depth | 0.988 |
| smri_sulc_cdk_cdmdfrlh | Sulcal depth lh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.009 | 0.016 | 0.597 | -0.080 | 0.026 | 0.002 | 0.010 | 0.022 | 0.648 | 8113 | 0.010 | Sulcal depth | 0.988 |
| smri_sulc_cdk_cuneuslh | Sulcal depth lh-cuneus | A_Prenatal_Burden_Score_z | 0.015 | 0.016 | 0.340 | 0.149 | 0.044 | 0.001 | 0.001 | 0.022 | 0.977 | 8113 | 0.017 | Sulcal depth | 0.988 |
| smri_sulc_cdk_ehinallh | Sulcal depth lh-entorhinal | A_Prenatal_Burden_Score_z | -0.040 | 0.016 | 0.012 | -0.058 | 0.030 | 0.054 | -0.014 | 0.022 | 0.509 | 8113 | 0.006 | Sulcal depth | 0.988 |
| smri_sulc_cdk_fusiformlh | Sulcal depth lh-fusiform | A_Prenatal_Burden_Score_z | 0.048 | 0.016 | 0.003 | 0.069 | 0.059 | 0.237 | 0.012 | 0.021 | 0.587 | 8113 | 0.046 | Sulcal depth | 0.988 |
| smri_sulc_cdk_ifpllh | Sulcal depth lh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.014 | 0.016 | 0.385 | 0.065 | 0.022 | 0.003 | 0.013 | 0.022 | 0.544 | 8113 | 0.033 | Sulcal depth | 0.988 |
| smri_sulc_cdk_iftmlh | Sulcal depth lh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.048 | 0.016 | 0.003 | 0.068 | 0.037 | 0.063 | -0.001 | 0.022 | 0.964 | 8113 | 0.006 | Sulcal depth | 0.988 |
| smri_sulc_cdk_ihcatelh | Sulcal depth lh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.029 | 0.016 | 0.064 | -0.131 | 0.085 | 0.125 | 0.009 | 0.021 | 0.670 | 8113 | 0.007 | Sulcal depth | 0.988 |
| smri_sulc_cdk_locclh | Sulcal depth lh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.018 | 0.016 | 0.258 | 0.035 | 0.046 | 0.448 | -0.004 | 0.022 | 0.855 | 8113 | 0.015 | Sulcal depth | 0.988 |
| smri_sulc_cdk_lobfrlh | Sulcal depth lh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | -0.002 | 0.016 | 0.904 | -0.110 | 0.050 | 0.027 | 0.009 | 0.022 | 0.690 | 8113 | 0.022 | Sulcal depth | 0.988 |
| smri_sulc_cdk_linguallh | Sulcal depth lh-lingual | A_Prenatal_Burden_Score_z | 0.034 | 0.016 | 0.034 | 0.193 | 0.064 | 0.003 | 0.007 | 0.021 | 0.749 | 8113 | 0.012 | Sulcal depth | 0.988 |
| smri_sulc_cdk_mobfrlh | Sulcal depth lh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.038 | 0.016 | 0.016 | 0.291 | 0.071 | 0.000 | -0.024 | 0.021 | 0.252 | 8113 | 0.044 | Sulcal depth | 0.988 |
| smri_sulc_cdk_mdtmlh | Sulcal depth lh-middletemporal | A_Prenatal_Burden_Score_z | 0.005 | 0.016 | 0.737 | -0.051 | 0.050 | 0.310 | 0.023 | 0.022 | 0.290 | 8113 | 0.012 | Sulcal depth | 0.988 |
| smri_sulc_cdk_parahpallh | Sulcal depth lh-parahippocampal | A_Prenatal_Burden_Score_z | -0.015 | 0.016 | 0.344 | 0.180 | 0.063 | 0.004 | 0.004 | 0.021 | 0.859 | 8113 | 0.041 | Sulcal depth | 0.988 |
| smri_sulc_cdk_paracnlh | Sulcal depth lh-paracentral | A_Prenatal_Burden_Score_z | 0.001 | 0.016 | 0.962 | 0.051 | 0.065 | 0.431 | -0.011 | 0.022 | 0.623 | 8113 | 0.004 | Sulcal depth | 0.988 |
| smri_sulc_cdk_parsopclh | Sulcal depth lh-parsopercularis | A_Prenatal_Burden_Score_z | -0.014 | 0.016 | 0.402 | 0.023 | 0.024 | 0.348 | -0.009 | 0.022 | 0.701 | 8113 | 0.001 | Sulcal depth | 0.988 |
| smri_sulc_cdk_parsobislh | Sulcal depth lh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.016 | 0.016 | 0.319 | 0.230 | 0.050 | 0.000 | 0.016 | 0.022 | 0.467 | 8113 | 0.037 | Sulcal depth | 0.988 |
| smri_sulc_cdk_parstgrislh | Sulcal depth lh-parstriangularis | A_Prenatal_Burden_Score_z | 0.008 | 0.016 | 0.622 | 0.013 | 0.022 | 0.562 | 0.001 | 0.022 | 0.981 | 8113 | 0.017 | Sulcal depth | 0.988 |
| smri_sulc_cdk_pericclh | Sulcal depth lh-pericalcarine | A_Prenatal_Burden_Score_z | -0.019 | 0.016 | 0.226 | 0.084 | 0.046 | 0.068 | 0.023 | 0.021 | 0.280 | 8113 | 0.044 | Sulcal depth | 0.988 |
| smri_sulc_cdk_postcnlh | Sulcal depth lh-postcentral | A_Prenatal_Burden_Score_z | -0.005 | 0.016 | 0.747 | -0.029 | 0.024 | 0.231 | 0.001 | 0.022 | 0.965 | 8113 | 0.025 | Sulcal depth | 0.988 |
| smri_sulc_cdk_ptcatelh | Sulcal depth lh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.041 | 0.015 | 0.007 | -0.402 | 0.056 | 0.000 | 0.009 | 0.021 | 0.666 | 8113 | 0.078 | Sulcal depth | 0.988 |
| smri_sulc_cdk_precnlh | Sulcal depth lh-precentral | A_Prenatal_Burden_Score_z | 0.044 | 0.016 | 0.007 | -0.167 | 0.035 | 0.000 | 0.003 | 0.022 | 0.897 | 8113 | 0.011 | Sulcal depth | 0.988 |
| smri_sulc_cdk_pclh | Sulcal depth lh-precuneus | A_Prenatal_Burden_Score_z | 0.008 | 0.016 | 0.618 | 0.183 | 0.046 | 0.000 | -0.003 | 0.022 | 0.892 | 8113 | 0.012 | Sulcal depth | 0.988 |
| smri_sulc_cdk_rracatelh | Sulcal depth lh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.024 | 0.016 | 0.129 | 0.077 | 0.062 | 0.212 | 0.017 | 0.022 | 0.436 | 8113 | 0.021 | Sulcal depth | 0.988 |
| smri_sulc_cdk_rrmdfrlh | Sulcal depth lh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.015 | 0.016 | 0.356 | -0.089 | 0.051 | 0.077 | 0.012 | 0.022 | 0.581 | 8113 | 0.039 | Sulcal depth | 0.988 |
| smri_sulc_cdk_sufrlh | Sulcal depth lh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.004 | 0.016 | 0.786 | 0.052 | 0.081 | 0.525 | -0.029 | 0.021 | 0.170 | 8113 | 0.021 | Sulcal depth | 0.988 |
| smri_sulc_cdk_supllh | Sulcal depth lh-superiorparietal | A_Prenatal_Burden_Score_z | 0.009 | 0.016 | 0.587 | -0.223 | 0.048 | 0.000 | -0.021 | 0.022 | 0.330 | 8113 | 0.033 | Sulcal depth | 0.988 |
| smri_sulc_cdk_sutmlh | Sulcal depth lh-superiortemporal | A_Prenatal_Burden_Score_z | -0.015 | 0.016 | 0.342 | 0.354 | 0.030 | 0.000 | -0.041 | 0.021 | 0.050 | 8113 | 0.090 | Sulcal depth | 0.988 |
| smri_sulc_cdk_smlh | Sulcal depth lh-supramarginal | A_Prenatal_Burden_Score_z | 0.029 | 0.016 | 0.070 | 0.176 | 0.023 | 0.000 | -0.034 | 0.022 | 0.125 | 8113 | 0.011 | Sulcal depth | 0.988 |
| smri_sulc_cdk_frpolelh | Sulcal depth lh-frontalpole | A_Prenatal_Burden_Score_z | -0.078 | 0.016 | 0.000 | 0.226 | 0.041 | 0.000 | 0.027 | 0.022 | 0.205 | 8113 | 0.048 | Sulcal depth | 0.988 |
| smri_sulc_cdk_tmpolelh | Sulcal depth lh-temporalpole | A_Prenatal_Burden_Score_z | -0.039 | 0.016 | 0.012 | 0.412 | 0.047 | 0.000 | 0.017 | 0.021 | 0.436 | 8113 | 0.068 | Sulcal depth | 0.988 |
| smri_sulc_cdk_trvtmlh | Sulcal depth lh-transversetemporal | A_Prenatal_Burden_Score_z | 0.009 | 0.016 | 0.550 | -0.358 | 0.035 | 0.000 | 0.042 | 0.021 | 0.051 | 8113 | 0.063 | Sulcal depth | 0.988 |
| smri_sulc_cdk_insulalh | Sulcal depth lh-insula | A_Prenatal_Burden_Score_z | 0.018 | 0.016 | 0.241 | -0.290 | 0.044 | 0.000 | -0.018 | 0.021 | 0.401 | 8113 | 0.052 | Sulcal depth | 0.988 |
| smri_sulc_cdk_banksstsrh | Sulcal depth rh-Banks of Superior Temporal Sulcus | A_Prenatal_Burden_Score_z | -0.013 | 0.016 | 0.419 | -0.220 | 0.043 | 0.000 | 0.007 | 0.022 | 0.736 | 8113 | 0.018 | Sulcal depth | 0.988 |
| smri_sulc_cdk_cdacaterh | Sulcal depth rh-caudalanteriorcingulate | A_Prenatal_Burden_Score_z | 0.013 | 0.016 | 0.419 | -0.235 | 0.049 | 0.000 | -0.030 | 0.021 | 0.155 | 8113 | 0.056 | Sulcal depth | 0.988 |
| smri_sulc_cdk_cdmdfrrh | Sulcal depth rh-caudalmiddlefrontal | A_Prenatal_Burden_Score_z | -0.002 | 0.016 | 0.918 | -0.112 | 0.022 | 0.000 | 0.027 | 0.022 | 0.218 | 8113 | 0.008 | Sulcal depth | 0.988 |
| smri_sulc_cdk_cuneusrh | Sulcal depth rh-cuneus | A_Prenatal_Burden_Score_z | 0.010 | 0.016 | 0.533 | 0.055 | 0.050 | 0.273 | 0.013 | 0.022 | 0.544 | 8113 | 0.007 | Sulcal depth | 0.988 |
| smri_sulc_cdk_ehinalrh | Sulcal depth rh-entorhinal | A_Prenatal_Burden_Score_z | -0.064 | 0.016 | 0.000 | 0.115 | 0.061 | 0.058 | 0.027 | 0.022 | 0.218 | 8113 | 0.008 | Sulcal depth | 0.988 |
| smri_sulc_cdk_fusiformrh | Sulcal depth rh-fusiform | A_Prenatal_Burden_Score_z | 0.061 | 0.016 | 0.000 | 0.078 | 0.048 | 0.103 | -0.019 | 0.022 | 0.383 | 8113 | 0.048 | Sulcal depth | 0.988 |
| smri_sulc_cdk_ifplrh | Sulcal depth rh-inferiorparietal | A_Prenatal_Burden_Score_z | 0.003 | 0.016 | 0.851 | 0.087 | 0.029 | 0.003 | -0.004 | 0.022 | 0.847 | 8113 | 0.043 | Sulcal depth | 0.988 |
| smri_sulc_cdk_iftmrh | Sulcal depth rh-inferiortemporal | A_Prenatal_Burden_Score_z | -0.047 | 0.016 | 0.004 | 0.097 | 0.044 | 0.028 | -0.010 | 0.022 | 0.656 | 8113 | 0.006 | Sulcal depth | 0.988 |
| smri_sulc_cdk_ihcaterh | Sulcal depth rh-isthmuscingulate | A_Prenatal_Burden_Score_z | 0.020 | 0.016 | 0.222 | -0.019 | 0.075 | 0.805 | 0.009 | 0.022 | 0.686 | 8113 | 0.002 | Sulcal depth | 0.988 |
| smri_sulc_cdk_loccrh | Sulcal depth rh-lateraloccipital | A_Prenatal_Burden_Score_z | 0.025 | 0.016 | 0.115 | 0.061 | 0.045 | 0.177 | 0.000 | 0.022 | 0.988 | 8113 | 0.007 | Sulcal depth | 0.988 |
| smri_sulc_cdk_lobfrrh | Sulcal depth rh-lateralorbitofrontal | A_Prenatal_Burden_Score_z | 0.017 | 0.016 | 0.292 | 0.054 | 0.032 | 0.092 | 0.004 | 0.022 | 0.844 | 8113 | 0.029 | Sulcal depth | 0.988 |
| smri_sulc_cdk_lingualrh | Sulcal depth rh-lingual | A_Prenatal_Burden_Score_z | 0.013 | 0.016 | 0.404 | 0.155 | 0.061 | 0.011 | -0.003 | 0.022 | 0.901 | 8113 | 0.015 | Sulcal depth | 0.988 |
| smri_sulc_cdk_mobfrrh | Sulcal depth rh-medialorbitofrontal | A_Prenatal_Burden_Score_z | -0.026 | 0.015 | 0.085 | 0.213 | 0.078 | 0.007 | 0.011 | 0.021 | 0.582 | 8113 | 0.053 | Sulcal depth | 0.988 |
| smri_sulc_cdk_mdtmrh | Sulcal depth rh-middletemporal | A_Prenatal_Burden_Score_z | 0.008 | 0.016 | 0.601 | -0.012 | 0.039 | 0.756 | 0.032 | 0.022 | 0.147 | 8113 | 0.030 | Sulcal depth | 0.988 |
| smri_sulc_cdk_parahpalrh | Sulcal depth rh-parahippocampal | A_Prenatal_Burden_Score_z | -0.004 | 0.016 | 0.806 | 0.303 | 0.064 | 0.000 | -0.003 | 0.021 | 0.890 | 8113 | 0.050 | Sulcal depth | 0.988 |
| smri_sulc_cdk_paracnrh | Sulcal depth rh-paracentral | A_Prenatal_Burden_Score_z | 0.007 | 0.016 | 0.655 | 0.015 | 0.033 | 0.655 | -0.007 | 0.022 | 0.740 | 8113 | 0.004 | Sulcal depth | 0.988 |
| smri_sulc_cdk_parsopcrh | Sulcal depth rh-parsopercularis | A_Prenatal_Burden_Score_z | -0.031 | 0.016 | 0.059 | 0.031 | 0.031 | 0.320 | 0.002 | 0.022 | 0.932 | 8113 | 0.003 | Sulcal depth | 0.988 |
| smri_sulc_cdk_parsobisrh | Sulcal depth rh-parsorbitalis | A_Prenatal_Burden_Score_z | 0.041 | 0.016 | 0.010 | 0.214 | 0.053 | 0.000 | -0.006 | 0.022 | 0.793 | 8113 | 0.033 | Sulcal depth | 0.988 |
| smri_sulc_cdk_parstgrisrh | Sulcal depth rh-parstriangularis | A_Prenatal_Burden_Score_z | 0.004 | 0.016 | 0.782 | 0.039 | 0.024 | 0.099 | 0.002 | 0.022 | 0.916 | 8113 | 0.017 | Sulcal depth | 0.988 |
| smri_sulc_cdk_periccrh | Sulcal depth rh-pericalcarine | A_Prenatal_Burden_Score_z | -0.017 | 0.016 | 0.284 | 0.051 | 0.050 | 0.307 | 0.018 | 0.021 | 0.392 | 8113 | 0.026 | Sulcal depth | 0.988 |
| smri_sulc_cdk_postcnrh | Sulcal depth rh-postcentral | A_Prenatal_Burden_Score_z | -0.002 | 0.016 | 0.900 | -0.041 | 0.033 | 0.217 | 0.036 | 0.022 | 0.097 | 8113 | 0.008 | Sulcal depth | 0.988 |
| smri_sulc_cdk_ptcaterh | Sulcal depth rh-posteriorcingulate | A_Prenatal_Burden_Score_z | 0.049 | 0.015 | 0.001 | -0.350 | 0.058 | 0.000 | -0.006 | 0.021 | 0.775 | 8113 | 0.074 | Sulcal depth | 0.988 |
| smri_sulc_cdk_precnrh | Sulcal depth rh-precentral | A_Prenatal_Burden_Score_z | 0.044 | 0.016 | 0.006 | -0.212 | 0.049 | 0.000 | -0.034 | 0.022 | 0.125 | 8113 | 0.016 | Sulcal depth | 0.988 |
| smri_sulc_cdk_pcrh | Sulcal depth rh-precuneus | A_Prenatal_Burden_Score_z | 0.009 | 0.016 | 0.584 | 0.144 | 0.058 | 0.012 | -0.002 | 0.022 | 0.938 | 8113 | 0.006 | Sulcal depth | 0.988 |
| smri_sulc_cdk_rracaterh | Sulcal depth rh-rostralanteriorcingulate | A_Prenatal_Burden_Score_z | 0.050 | 0.016 | 0.002 | 0.002 | 0.057 | 0.972 | 0.002 | 0.022 | 0.943 | 8113 | 0.012 | Sulcal depth | 0.988 |
| smri_sulc_cdk_rrmdfrrh | Sulcal depth rh-rostralmiddlefrontal | A_Prenatal_Burden_Score_z | 0.030 | 0.016 | 0.060 | -0.115 | 0.050 | 0.022 | -0.009 | 0.022 | 0.666 | 8113 | 0.029 | Sulcal depth | 0.988 |
| smri_sulc_cdk_sufrrh | Sulcal depth rh-superiorfrontal | A_Prenatal_Burden_Score_z | -0.031 | 0.016 | 0.049 | 0.099 | 0.078 | 0.203 | -0.013 | 0.021 | 0.531 | 8113 | 0.025 | Sulcal depth | 0.988 |
| smri_sulc_cdk_suplrh | Sulcal depth rh-superiorparietal | A_Prenatal_Burden_Score_z | -0.024 | 0.016 | 0.122 | -0.255 | 0.055 | 0.000 | 0.008 | 0.021 | 0.693 | 8113 | 0.036 | Sulcal depth | 0.988 |
| smri_sulc_cdk_sutmrh | Sulcal depth rh-superiortemporal | A_Prenatal_Burden_Score_z | -0.057 | 0.016 | 0.000 | 0.249 | 0.023 | 0.000 | -0.021 | 0.021 | 0.323 | 8113 | 0.078 | Sulcal depth | 0.988 |
| smri_sulc_cdk_smrh | Sulcal depth rh-supramarginal | A_Prenatal_Burden_Score_z | 0.029 | 0.016 | 0.074 | 0.066 | 0.031 | 0.032 | -0.016 | 0.022 | 0.471 | 8113 | 0.003 | Sulcal depth | 0.988 |
| smri_sulc_cdk_frpolerh | Sulcal depth rh-frontalpole | A_Prenatal_Burden_Score_z | -0.071 | 0.016 | 0.000 | 0.180 | 0.053 | 0.001 | 0.040 | 0.022 | 0.063 | 8113 | 0.045 | Sulcal depth | 0.988 |
| smri_sulc_cdk_tmpolerh | Sulcal depth rh-temporalpole | A_Prenatal_Burden_Score_z | -0.017 | 0.016 | 0.286 | 0.403 | 0.077 | 0.000 | -0.001 | 0.021 | 0.976 | 8113 | 0.051 | Sulcal depth | 0.988 |
| smri_sulc_cdk_trvtmrh | Sulcal depth rh-transversetemporal | A_Prenatal_Burden_Score_z | 0.010 | 0.016 | 0.538 | -0.296 | 0.043 | 0.000 | 0.020 | 0.022 | 0.343 | 8113 | 0.048 | Sulcal depth | 0.988 |
| smri_sulc_cdk_insularh | Sulcal depth rh-insula | A_Prenatal_Burden_Score_z | -0.012 | 0.016 | 0.431 | -0.441 | 0.039 | 0.000 | -0.009 | 0.021 | 0.672 | 8113 | 0.084 | Sulcal depth | 0.988 |
Cortical Volume
Out of 7 significant Cortical Volume ROIs associated with Prenatal Adversity in females, 11 were also significantly associated with individual prenatal exposures.
Overlapping ROIs: Cortical volume lh-inferiorparietal, Cortical volume lh-inferiorparietal, Cortical volume lh-middletemporal, Cortical volume lh-middletemporal, Cortical volume lh-middletemporal, Cortical volume lh-insula, Cortical volume lh-insula, Cortical volume lh-insula, Cortical volume rh-middletemporal, Cortical volume rh-middletemporal, Cortical volume rh-insula.
Prenatal Vars: Gestational Age, Birth weight, C-Section, Gestational Age, Birth weight, C-Section, Gestational Age, Birth weight, Gestational Age, Birth weight, Gestational Age
Out of 7 significant Cortical Volume ROIs associated with Prenatal Adversity in males, only 6were also significant with individual risks.
Overlapping ROIs: Cortical volume lh-precentral, Cortical volume rh-isthmuscingulate, Cortical volume rh-middletemporal, Cortical volume rh-middletemporal, Cortical volume rh-postcentral, Cortical volume rh-frontalpole.
Prenatal vars:Tobacco use, Gestational Age, Gestational Age, Birth weight, Gestational Age, C-Section
Subcortical Volume
Out of 0 significant Subcortical Volume ROIs associated with Prenatal Adversity in males, 0were also significant with individual exposure.
Overlapping ROIs:
Prenatal vars:
Cortical Thickness
Out of 11 significant Cortical Thickness regions associated with Prenatal Adversity in females, 19were also significant.
Overlaping ROIs:Cortical thickness lh-Banks of Superior Temporal Sulcus, Cortical thickness lh-Banks of Superior Temporal Sulcus, Cortical thickness lh-lateralorbitofrontal, Cortical thickness lh-lateralorbitofrontal, Cortical thickness lh-medialorbitofrontal, Cortical thickness lh-middletemporal, Cortical thickness lh-middletemporal, Cortical thickness lh-middletemporal, Cortical thickness lh-parahippocampal, Cortical thickness lh-parahippocampal, Cortical thickness lh-frontalpole, Cortical thickness lh-transversetemporal, Cortical thickness rh-lateralorbitofrontal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-middletemporal, Cortical thickness rh-middletemporal, Cortical thickness rh-middletemporal, Cortical thickness rh-frontalpole
Prenatal vars:C-Section, Gestational Age, C-Section, Birth weight, Birth weight, C-Section, Gestational Age, Birth weight, C-Section, Gestational Age, Birth weight, C-Section, Birth weight, Gestational Age, Birth weight, C-Section, Gestational Age, Birth weight, Birth weight
Out of 14 significant Cortical Thickness regions associated with Prenatal Adversity in males, 11 were also significant.
Overlaping ROIs:Cortical thickness lh-medialorbitofrontal, Cortical thickness lh-middletemporal, Cortical thickness lh-parstriangularis, Cortical thickness rh-lateralorbitofrontal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-medialorbitofrontal, Cortical thickness rh-middletemporal, Cortical thickness rh-middletemporal, Cortical thickness rh-rostralanteriorcingulate, Cortical thickness rh-superiortemporal, Cortical thickness rh-frontalpole
Prenatal vars:Gestational Age, C-Section, C-Section, C-Section, Gestational Age, Birth weight, C-Section, Gestational Age, Birth weight, Birth weight, Birth weight
Cortical Area
Out of 1 significant Cortical Area regions associated with Prenatal Adversity infemales, only 2.
Overlaping ROIs:Cortical area lh-insula, Cortical area lh-insula
Prenatal vars:C-Section, Birth weight
Out of 3 significant Cortical Area regions associated with Prenatal Adversity in males, only 1 were significant.
Overlaping ROIs:Cortical area rh-lateralorbitofrontal
Prenatal vars:Birth weight
Cortical Sulcal Depth
Out of 6 significant Sulcal depth regions associated with Prenatal Adversity in females, 10 were also significant.
Overlaping ROIs:Sulcal depth lh-fusiform, Sulcal depth lh-fusiform, Sulcal depth lh-frontalpole, Sulcal depth rh-entorhinal, Sulcal depth rh-fusiform, Sulcal depth rh-fusiform, Sulcal depth rh-superiortemporal, Sulcal depth rh-superiortemporal, Sulcal depth rh-frontalpole, Sulcal depth rh-frontalpole
Prenatal vars:C-Section, Gestational Age, Gestational Age, Birth weight, Gestational Age, Birth weight, Gestational Age, Birth weight, Gestational Age, Birth weight
Out of 20 significant Sulcal Depth regions associated with Prenatal Adversity in males, all 35. were also significant
Overlaping ROIs:smri_sulc_cdk_ehinallh, smri_sulc_cdk_ehinalrh, smri_sulc_cdk_frpolelh, smri_sulc_cdk_fusiformlh, smri_sulc_cdk_fusiformrh, smri_sulc_cdk_iftmlh, smri_sulc_cdk_iftmrh, smri_sulc_cdk_linguallh, smri_sulc_cdk_mdtmrh, smri_sulc_cdk_mobfrlh, smri_sulc_cdk_precnlh, smri_sulc_cdk_ptcatelh, smri_sulc_cdk_ptcaterh, smri_sulc_cdk_rracatelh, smri_sulc_cdk_rracaterh, smri_sulc_cdk_sufrrh, smri_sulc_cdk_sutmlh, smri_sulc_cdk_sutmrh
Prenatal vars:Birth weight, C-Section, Gestational Age, Tobacco use
R.f <- cor(abcd.f[, covars.x.labels$covars.x[1:22] ], use = 'complete.obs')
R.m <- cor(abcd.m[, covars.x.labels$covars.x[1:22] ], use = 'complete.obs')
## Merging MAtrices
corstarsM <- matrix(NA, nrow = 22, ncol = 22)
corstarsM[upper.tri(corstarsM)] <- R.f[upper.tri(R.f)]
corstarsM[lower.tri(corstarsM)] <- R.m[lower.tri(R.m)]
rownames(corstarsM) <- covars.x.labels$labels[1:22]
colnames(corstarsM) <- covars.x.labels$labels[1:22]
corrplot::corrplot(corstarsM, diag = F, addCoef.col = "black", tl.col="black", tl.srt=45, tl.cex=.75,number.cex=.5 )
jpeg(filename = "eFigure2.jpg", height = 8,width = 12, units = 'in', res = 600)
corrplot::corrplot(corstarsM, diag = F, addCoef.col = "black", tl.col="black", tl.srt=45, tl.cex=.75,number.cex=.5 )
dev.off()
## png
## 2
for(i in 1:10){
abcd[,"PC.y"] <- abcd[,paste0("PC",i)]
assign(paste0("PC",i),
abcd%>% dplyr::filter(!is.na(demo_race_ethnicity)) %>%
ggplot(aes(x= demo_race_ethnicity, y= PC.y))+
geom_jitter(color= "black", size=0.2, alpha=0.4) +
theme_bw()+
geom_boxplot(aes(fill=demo_race_ethnicity),alpha=.7)+
theme(
legend.position="none",
plot.title = element_text(size=11,hjust = 0.5),
axis.text.x = element_text(size=9,angle = 45,hjust = 1)
) +
labs(title = paste0("PC",i), x="",y="")
)
}
gridExtra::grid.arrange(PC1,
PC2,
PC3,
PC4,
PC5,
PC6,
PC7,
PC8,
PC9,
PC10, nrow = 2)
jpeg(filename = "eFigure3.jpg", height = 6,width = 12, units = 'in', res = 600)
gridExtra::grid.arrange(PC1,
PC2,
PC3,
PC4,
PC5,
PC6,
PC7,
PC8,
PC9,
PC10, nrow = 2)
dev.off()
## png
## 2
fit.Pop_strat <- summary(lm(smri_vol_cdk_total ~ PC1 + PC2 + PC3 , abcd))
cor_PGS_Brain <- stats::cor(abcd$smri_vol_cdk_total, abcd$brainvol.pgs,use = 'complete.obs')
# Multicollinarity check
VIf.formula <- paste("smri_vol_cdk_total ~ A_Prenatal_Burden_Score_z + ", paste(covars.x.labels$covars.x[-1], collapse = "+"))
fit.VIF <- lm(as.formula(VIf.formula), data = abcd)
VIF.model <- car::vif(fit.VIF)
Brain volume explained variance by the first three principal components of of population stratification 0.13 Correlation between Brain volume PGS and total brain volume 0.21
# N significant Brain Regions
MetaSigROIsN.f <- sum(Meta_Betas.F$p.value<0.05)
MetaSigROIsN.m <- sum(Meta_Betas.M$p.value<0.05)
# Running Principal component analysis ####
# Females
MetaPCs.F <- principal(abcd.f[,Meta_Betas.F$ROI[Meta_Betas.F$p.value<0.05]], 3)
MetaPCsLoadings.F <- as.data.frame(MetaPCs.F$loadings[1:MetaSigROIsN.f, 1:3])
rownames(MetaPCsLoadings.F) <- Meta_Betas.F$ElementDescription[Meta_Betas.F$p.value<0.05]
for(i in 1:3){MetaPCsLoadings.F[,i] <- ifelse(abs(MetaPCsLoadings.F[,i])<.2,0, MetaPCsLoadings.F[,i])}
MetaPCsLoadings.F <- arrange(MetaPCsLoadings.F, desc(RC3))
MetaPCsLoadings.F <- arrange(MetaPCsLoadings.F, desc(RC2))
MetaPCsLoadings.F <- arrange(MetaPCsLoadings.F, desc(RC1))
MetaPCsLoadings.F$ElementDescription <- Meta_Betas.F$ElementDescription[Meta_Betas.F$p.value<0.05]
# Re-ordering Cols
colnames(MetaPCsLoadings.F)[1:3] <- c('Meta Brain PC1', 'Meta Brain PC2','Meta Brain PC3')#renaming PCs
MetaPCsLoadings.F.long <- reshape2::melt(MetaPCsLoadings.F,
id="ElementDescription",
measure=c('Meta Brain PC1', 'Meta Brain PC2','Meta Brain PC3'),
variable.name="Brain components", value.name="Loading")
MetaPCsLoadings.F.long$ElementDescription <- factor(MetaPCsLoadings.F$ElementDescription,
levels = Meta_Betas.F$ElementDescription[Meta_Betas.F$p.value<0.05])
#Males
MetaPCs.M <- principal(abcd.m[,Meta_Betas.M$ROI[Meta_Betas.M$p.value<0.05]], 3)
MetaPCsLoadings.M <- as.data.frame(MetaPCs.M$loadings[1:MetaSigROIsN.m, 1:3])
rownames(MetaPCsLoadings.M) <- Meta_Betas.M$ElementDescription[Meta_Betas.M$p.value<0.05]
for(i in 1:3){MetaPCsLoadings.M[,i] <- ifelse(abs(MetaPCsLoadings.M[,i])<.2,0, MetaPCsLoadings.M[,i])}
MetaPCsLoadings.M <- arrange(MetaPCsLoadings.M, desc(RC3))
MetaPCsLoadings.M <- arrange(MetaPCsLoadings.M, desc(RC2))
MetaPCsLoadings.M <- arrange(MetaPCsLoadings.M, desc(RC1))
MetaPCsLoadings.M$ElementDescription<- Meta_Betas.M$ElementDescription[Meta_Betas.M$p.value<0.05]
# Re-ordering Cols
colnames(MetaPCsLoadings.M)[1:3] <- c('Meta Brain PC2', 'Meta Brain PC1','Meta Brain PC3')#renaming PCs
MetaPCsLoadings.M.long <- reshape2::melt(MetaPCsLoadings.M,
id="ElementDescription",
measure=c('Meta Brain PC1', 'Meta Brain PC2','Meta Brain PC3'),
variable.name="Brain components", value.name="Loading")
MetaPCsLoadings.M.long$ElementDescription <- factor(MetaPCsLoadings.M$ElementDescription,
levels = Meta_Betas.M$ElementDescription[Meta_Betas.M$p.value<0.05])
MetaLoadings.F <-
ggplot(MetaPCsLoadings.F.long,aes(y = ElementDescription,x = round(Loading,1),abs(Loading),fill = Loading)) +
facet_wrap( ~ `Brain components`, nrow = 1) +
geom_bar(stat = "identity") +
scale_fill_gradient2(name = "Loading", high = "red", mid = "white", low = "blue", midpoint = 0, guide = 'none') +
theme_bw(base_size = 10)+
geom_vline(xintercept = 0, linewidth=.25)+
coord_cartesian(xlim = c(-.6,.8))+
labs(y="Brain Data Modalities and Regions", title = 'Females')+
theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
plot.title = element_text(size = 11,hjust = 0.5),axis.title.x = element_blank())
MetaLoadings.M <-
ggplot(MetaPCsLoadings.M.long,aes(y = ElementDescription,x = round(Loading,1),abs(Loading),fill = Loading)) +
facet_wrap( ~ `Brain components`, nrow = 1) +
geom_bar(stat = "identity") +
scale_fill_gradient2(name = "Loading", high = "red", mid = "white", low = "blue", midpoint = 0, guide = 'none') +
coord_cartesian(xlim = c(-.6,.8))+
theme_bw(base_size = 10) +
geom_vline(xintercept = 0, linewidth=.25)+
labs(y="Brain Data Modalities and Regions", title = 'Males')+
theme(axis.text.y = element_text(size = 9),axis.text.x = element_text(size = 7.5),
plot.title = element_text(size = 11,hjust = 0.5),axis.title.x = element_blank())
grid.arrange(MetaLoadings.F, MetaLoadings.M, ncol=2)
jpeg(filename = "eFigure4A.jpg", height = 6,width = 13, units = 'in', res = 600)
grid.arrange(MetaLoadings.F, MetaLoadings.M, ncol=2)
dev.off()
## png
## 2
# Exploring PCs and CBCL and Cognitive measures
abcd.f[,'MetaBrain.PC1'] <- as.numeric(MetaPCs.F$scores[,1])
abcd.f[,'MetaBrain.PC2'] <- as.numeric(MetaPCs.F$scores[,2])
abcd.f[,'MetaBrain.PC3'] <- as.numeric(MetaPCs.F$scores[,3])
abcd.m[,'MetaBrain.PC1'] <- as.numeric(MetaPCs.M$scores[,2]) # Similar to PC1 loading patterns
abcd.m[,'MetaBrain.PC2'] <- as.numeric(MetaPCs.M$scores[,1]) # Similar to PC2 loading patterns
abcd.m[,'MetaBrain.PC3'] <- as.numeric(MetaPCs.M$scores[,3])
CBCL_results.F <- LME_loop(
predictors = c('MetaBrain.PC1', 'MetaBrain.PC2', "MetaBrain.PC3"),
outcomes = c(
'cbcl_scr_syn_external_t',
"cbcl_scr_syn_internal_t",
"cbcl_scr_syn_totprob_t",
'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
'nihtbx_cryst_fc', # Crystallized Composite Fully-Corrected z-score
'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
),
covars = covars.x,
Scale = TRUE,
data = abcd.f
)
CBCL_results.F$FDR <- p.adjust(CBCL_results.F$p_value_Predictor, 'fdr')
CBCL_results.M <- LME_loop(
predictors = c('MetaBrain.PC1', 'MetaBrain.PC2', "MetaBrain.PC3"),
outcomes = c(
'cbcl_scr_syn_external_t',
"cbcl_scr_syn_internal_t",
"cbcl_scr_syn_totprob_t",
'nihtbx_totalcomp_fc',# Cognition Total Composite Score Fully-Corrected z-score
'nihtbx_cryst_fc', # Crystallized Composite Fully-Corrected z-score
'nihtbx_fluidcomp_fc' # Cognition Fluid Composite Fully-Corrected z-score
),
covars = covars.x,
Scale = TRUE,
data = abcd.m
)
CBCL_results.M$FDR <- p.adjust(CBCL_results.M$p_value_Predictor, 'fdr')
kable(cbind(CBCL_results.F[,-c(1,3:4)],CBCL_results.M[,-c(1:5)]),
digits = 4,
caption = "Associations Meta-analysis Brain Components with Behavior Problems and Cognition",row.names = F)%>%
kableExtra::kable_styling(position = "center")%>%
add_header_above(c(" "=2, 'Females'=6, 'Males'=6))
| Outcome | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_external_t | MetaBrain.PC1 | -0.0377 | 0.0140 | 3917 | 0.293 | 0.0073 | 0.0256 | -0.0825 | 0.0138 | 4196 | 0.286 | 0.0000 | 0.0000 |
| cbcl_scr_syn_external_t | MetaBrain.PC2 | 0.0268 | 0.0136 | 3917 | 0.292 | 0.0482 | 0.1084 | -0.0029 | 0.0133 | 4196 | 0.280 | 0.8287 | 0.8774 |
| cbcl_scr_syn_external_t | MetaBrain.PC3 | 0.0065 | 0.0137 | 3917 | 0.292 | 0.6337 | 0.6619 | 0.0142 | 0.0130 | 4196 | 0.281 | 0.2749 | 0.4949 |
| cbcl_scr_syn_internal_t | MetaBrain.PC1 | 0.0060 | 0.0137 | 3917 | 0.318 | 0.6619 | 0.6619 | -0.0448 | 0.0137 | 4196 | 0.303 | 0.0011 | 0.0040 |
| cbcl_scr_syn_internal_t | MetaBrain.PC2 | 0.0143 | 0.0132 | 3917 | 0.318 | 0.2814 | 0.4221 | 0.0009 | 0.0131 | 4196 | 0.301 | 0.9447 | 0.9447 |
| cbcl_scr_syn_internal_t | MetaBrain.PC3 | -0.0081 | 0.0133 | 3917 | 0.317 | 0.5439 | 0.6119 | 0.0097 | 0.0129 | 4196 | 0.301 | 0.4527 | 0.6791 |
| cbcl_scr_syn_totprob_t | MetaBrain.PC1 | -0.0171 | 0.0129 | 3917 | 0.391 | 0.1836 | 0.3005 | -0.0655 | 0.0127 | 4196 | 0.377 | 0.0000 | 0.0000 |
| cbcl_scr_syn_totprob_t | MetaBrain.PC2 | 0.0166 | 0.0124 | 3917 | 0.391 | 0.1811 | 0.3005 | -0.0061 | 0.0122 | 4196 | 0.373 | 0.6179 | 0.7944 |
| cbcl_scr_syn_totprob_t | MetaBrain.PC3 | -0.0171 | 0.0125 | 3917 | 0.391 | 0.1735 | 0.3005 | 0.0113 | 0.0119 | 4196 | 0.374 | 0.3439 | 0.5627 |
| nihtbx_totalcomp_fc | MetaBrain.PC1 | 0.1254 | 0.0167 | 3603 | 0.059 | 0.0000 | 0.0000 | 0.0697 | 0.0165 | 3866 | 0.049 | 0.0000 | 0.0001 |
| nihtbx_totalcomp_fc | MetaBrain.PC2 | -0.0427 | 0.0162 | 3603 | 0.048 | 0.0085 | 0.0256 | -0.0225 | 0.0157 | 3866 | 0.045 | 0.1511 | 0.3401 |
| nihtbx_totalcomp_fc | MetaBrain.PC3 | -0.0124 | 0.0162 | 3603 | 0.046 | 0.4454 | 0.5727 | -0.0077 | 0.0154 | 3866 | 0.045 | 0.6164 | 0.7944 |
| nihtbx_cryst_fc | MetaBrain.PC1 | 0.1213 | 0.0167 | 3617 | 0.043 | 0.0000 | 0.0000 | 0.0844 | 0.0163 | 3883 | 0.053 | 0.0000 | 0.0000 |
| nihtbx_cryst_fc | MetaBrain.PC2 | -0.0146 | 0.0162 | 3617 | 0.032 | 0.3666 | 0.5076 | -0.0064 | 0.0154 | 3883 | 0.046 | 0.6792 | 0.8150 |
| nihtbx_cryst_fc | MetaBrain.PC3 | 0.0100 | 0.0162 | 3617 | 0.031 | 0.5382 | 0.6119 | 0.0044 | 0.0153 | 3883 | 0.046 | 0.7750 | 0.8719 |
| nihtbx_fluidcomp_fc | MetaBrain.PC1 | 0.0808 | 0.0172 | 3607 | 0.040 | 0.0000 | 0.0000 | 0.0297 | 0.0169 | 3864 | 0.024 | 0.0794 | 0.2041 |
| nihtbx_fluidcomp_fc | MetaBrain.PC2 | -0.0517 | 0.0166 | 3607 | 0.036 | 0.0019 | 0.0086 | -0.0295 | 0.0160 | 3864 | 0.024 | 0.0660 | 0.1979 |
| nihtbx_fluidcomp_fc | MetaBrain.PC3 | -0.0342 | 0.0166 | 3607 | 0.036 | 0.0396 | 0.1019 | -0.0197 | 0.0158 | 3864 | 0.023 | 0.2135 | 0.4270 |
kable(cbind(Prenatal_results.F[,-c(1,3:4)],Prenatal_results.M[,-c(1:5)]),
digits = 3,
caption = "Associations Prenatal Adverse Exposures with Behavior Problems and Cognition",row.names = F)%>%
kableExtra::kable_styling(position = "center")%>%add_header_above(c(" "=2, 'Females'=6, 'Males'=6))
| Outcome | Predictor | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR | Beta_Predictor | Std.error | Sample_size | R2 | p_value_Predictor | FDR |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_external_t | A_Prenatal_Burden_Score_z | 0.051 | 0.014 | 3917 | 0.293 | 0.000 | 0.001 | 0.036 | 0.009 | 4196 | 0.282 | 0.000 | 0.000 |
| cbcl_scr_syn_internal_t | A_Prenatal_Burden_Score_z | 0.032 | 0.014 | 3917 | 0.317 | 0.018 | 0.023 | 0.018 | 0.009 | 4196 | 0.301 | 0.041 | 0.082 |
| cbcl_scr_syn_totprob_t | A_Prenatal_Burden_Score_z | 0.059 | 0.013 | 3917 | 0.391 | 0.000 | 0.000 | 0.039 | 0.008 | 4196 | 0.374 | 0.000 | 0.000 |
| nihtbx_totalcomp_fc | A_Prenatal_Burden_Score_z | -0.039 | 0.017 | 3603 | 0.048 | 0.019 | 0.023 | -0.007 | 0.011 | 3866 | 0.045 | 0.541 | 0.649 |
| nihtbx_cryst_fc | A_Prenatal_Burden_Score_z | -0.001 | 0.017 | 3617 | 0.031 | 0.973 | 0.973 | 0.001 | 0.011 | 3883 | 0.046 | 0.910 | 0.910 |
| nihtbx_fluidcomp_fc | A_Prenatal_Burden_Score_z | -0.059 | 0.017 | 3607 | 0.038 | 0.001 | 0.001 | -0.009 | 0.011 | 3864 | 0.023 | 0.422 | 0.633 |
#### Specifing Mediation Models ####
# Mediation MetaBrain PC1 ####
#Total problems
med.MetaBrainPC1.Tot <- "
# direct effect
cbcl_scr_syn_totprob_t.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
cbcl_scr_syn_totprob_t.std ~ b*MetaBrain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
cbcl_scr_syn_totprob_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
#Externalizing problems - PC1
med.MetaBrainPC1.Ext <- "
# direct effect
cbcl_scr_syn_external_t.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
cbcl_scr_syn_external_t.std ~ b*MetaBrain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2 ~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
cbcl_scr_syn_external_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
# Internalizing
med.MetaBrainPC1.Int <- "
# direct effect
cbcl_scr_syn_internal_t.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
cbcl_scr_syn_internal_t.std ~ b*MetaBrain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
cbcl_scr_syn_internal_t.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
# Total Cognition
med.MetaBrainPC1.CogTotal <- "
# direct effect
nihtbx_totalcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
nihtbx_totalcomp_fc.std ~ b*MetaBrain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_totalcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
med.MetaBrainPC2.CogTotal <- "
# direct effect
nihtbx_totalcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC2 ~ a*A_Prenatal_Burden_Score
nihtbx_totalcomp_fc.std ~ b*MetaBrain.PC2
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_totalcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
# Fluid Cognition - PC1 and PC2
med.MetaBrainPC1.CogFluid <- "
# direct effect
nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
nihtbx_fluidcomp_fc.std ~ b*MetaBrain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
med.MetaBrainPC2.CogFluid <- "
# direct effect
nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC2 ~ a*A_Prenatal_Burden_Score
nihtbx_fluidcomp_fc.std ~ b*MetaBrain.PC2
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3 ~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
med.MetaBrainPC3.CogFluid <- "
# direct effect
nihtbx_fluidcomp_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC3 ~ a*A_Prenatal_Burden_Score
nihtbx_fluidcomp_fc.std ~ b*MetaBrain.PC3
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ aPC1*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2 ~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3 ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_fluidcomp_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
# Cryst Cognition
med.MetaBrainPC1.CogCryst <- "
# direct effect
nihtbx_cryst_fc.std ~ c*A_Prenatal_Burden_Score
# mediator
MetaBrain.PC1 ~ a*A_Prenatal_Burden_Score
nihtbx_cryst_fc.std ~ b*MetaBrain.PC1
# indirect effect (a*b)
ab := a*b
# total effect
total := c + (a*b)
#Indirect/total effect
abtot := ab/total
#Covars
MetaBrain.PC1~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC2~ aPC2*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
MetaBrain.PC3~ aPC3*A_Prenatal_Burden_Score + interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
nihtbx_cryst_fc.std ~ interview_age_z + demo_comb_income_v2_z +demo_caregiver_ed_z + fes_fam_env_score_z + demo_prnt_marital + devhx_3_p_z +
asr_scr_totprob_t_z + neighborhood_safety_z + Average_Screentime_z + Exp_trauma + PC1_z +PC2_z + PC3_z +PC4_z + PC5_z + PC6_z + PC7_z+
PC8_z + PC9_z + PC10_z + brainvol.pgs_z + Handedness
"
#Mediation Females
fit.MetaBrainPC1.CogTotal.f <- lavaan::sem(med.MetaBrainPC1.CogTotal, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC1.CogFluid.f <- lavaan::sem(med.MetaBrainPC1.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC1.CogCryst.f <- lavaan::sem(med.MetaBrainPC1.CogCryst, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC1.Ext.f <- lavaan::sem(med.MetaBrainPC1.Ext, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC2.CogFluid.f <- lavaan::sem(med.MetaBrainPC2.CogFluid, data = abcd.f, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC2.CogTotal.f <- lavaan::sem(med.MetaBrainPC2.CogTotal, data = abcd.f, se = "bootstrap", bootstrap = 1000)
#Mediation Males
fit.MetaBrainPC1.Tot.m <- lavaan::sem(med.MetaBrainPC1.Tot , data = abcd.m, se = "bootstrap", bootstrap = 1000)
fit.MetaBrainPC1.Ext.m <- lavaan::sem(med.MetaBrainPC1.Ext , data = abcd.m, se = "bootstrap", bootstrap = 1000)
#Females
fit.Pars.MetaBrainPC1.CogTotal.f <- lavaan::parameterestimates(fit.MetaBrainPC1.CogTotal.f, boot.ci.type = "bca.simple")
fit.Pars.MetaBrainPC1.CogFluid.f <- lavaan::parameterestimates(fit.MetaBrainPC1.CogFluid.f, boot.ci.type = "bca.simple")
fit.Pars.MetaBrainPC1.CogCryst.f <- lavaan::parameterestimates(fit.MetaBrainPC1.CogCryst.f, boot.ci.type = "bca.simple")
fit.Pars.PC1.Ext.f <- lavaan::parameterestimates(fit.MetaBrainPC1.Ext.f, boot.ci.type = "bca.simple")
fit.Pars.MetaBrainPC2.CogFluid.f <- lavaan::parameterestimates(fit.MetaBrainPC2.CogFluid.f, boot.ci.type = "bca.simple")
fit.Pars.MetaBrainPC2.CogTotal.f <- lavaan::parameterestimates(fit.MetaBrainPC2.CogTotal.f, boot.ci.type = "bca.simple")
# Males
fit.Pars.MetaBrainPC1.Tot.m <- lavaan::parameterestimates(fit.MetaBrainPC1.Tot.m, boot.ci.type = "bca.simple")
fit.Pars.MetaBrainPC1.Ext.m <- lavaan::parameterestimates(fit.MetaBrainPC1.Ext.m, boot.ci.type = "bca.simple")
kable(fit.Pars.MetaBrainPC1.CogTotal.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Total Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_totalcomp_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.025 | 0.011 | -2.306 | 0.021 | -0.045 | -0.002 |
| MetaBrain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.065 | 0.011 | -6.035 | 0.000 | -0.085 | -0.044 |
| nihtbx_totalcomp_fc.std | ~ | MetaBrain.PC1 | b | 0.118 | 0.017 | 7.077 | 0.000 | 0.088 | 0.152 |
| MetaBrain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.075 | 0.011 | 6.729 | 0.000 | 0.052 | 0.096 |
| MetaBrain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.052 | 0.012 | -4.516 | 0.000 | -0.076 | -0.031 |
| ab | := | a*b | ab | -0.008 | 0.002 | -4.545 | 0.000 | -0.012 | -0.005 |
| total | := | c+(a*b) | total | -0.032 | 0.011 | -3.023 | 0.003 | -0.052 | -0.011 |
| abtot | := | ab/total | abtot | 0.237 | 0.216 | 1.096 | 0.273 | 0.119 | 0.756 |
kable(fit.Pars.MetaBrainPC1.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Fluid Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_fluidcomp_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.035 | 0.011 | -3.165 | 0.002 | -0.056 | -0.012 |
| MetaBrain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.065 | 0.011 | -5.965 | 0.000 | -0.085 | -0.043 |
| nihtbx_fluidcomp_fc.std | ~ | MetaBrain.PC1 | b | 0.074 | 0.018 | 4.149 | 0.000 | 0.041 | 0.111 |
| MetaBrain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.075 | 0.011 | 6.769 | 0.000 | 0.054 | 0.099 |
| MetaBrain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.052 | 0.012 | -4.403 | 0.000 | -0.076 | -0.030 |
| ab | := | a*b | ab | -0.005 | 0.001 | -3.379 | 0.001 | -0.008 | -0.002 |
| total | := | c+(a*b) | total | -0.040 | 0.011 | -3.617 | 0.000 | -0.060 | -0.017 |
| abtot | := | ab/total | abtot | 0.120 | 0.066 | 1.836 | 0.066 | 0.054 | 0.314 |
kable(fit.Pars.MetaBrainPC1.CogCryst.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Fluid Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_cryst_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.003 | 0.011 | -0.248 | 0.804 | -0.023 | 0.020 |
| MetaBrain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.066 | 0.011 | -6.123 | 0.000 | -0.088 | -0.044 |
| nihtbx_cryst_fc.std | ~ | MetaBrain.PC1 | b | 0.116 | 0.017 | 6.676 | 0.000 | 0.081 | 0.149 |
| MetaBrain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.075 | 0.011 | 7.121 | 0.000 | 0.055 | 0.096 |
| MetaBrain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.051 | 0.012 | -4.262 | 0.000 | -0.075 | -0.027 |
| ab | := | a*b | ab | -0.008 | 0.002 | -4.530 | 0.000 | -0.011 | -0.005 |
| total | := | c+(a*b) | total | -0.010 | 0.011 | -0.918 | 0.359 | -0.031 | 0.013 |
| abtot | := | ab/total | abtot | 0.731 | 5.232 | 0.140 | 0.889 | 0.209 | 66.927 |
kable(fit.Pars.PC1.Ext.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC1 for Externalizing Problems - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_external_t.std | ~ | A_Prenatal_Burden_Score | c | 0.022 | 0.009 | 2.398 | 0.016 | 0.005 | 0.039 |
| MetaBrain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.066 | 0.010 | -6.413 | 0.000 | -0.085 | -0.046 |
| cbcl_scr_syn_external_t.std | ~ | MetaBrain.PC1 | b | -0.030 | 0.014 | -2.150 | 0.032 | -0.057 | -0.001 |
| MetaBrain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.076 | 0.010 | 7.508 | 0.000 | 0.056 | 0.096 |
| MetaBrain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.049 | 0.011 | -4.271 | 0.000 | -0.071 | -0.027 |
| ab | := | a*b | ab | 0.002 | 0.001 | 1.988 | 0.047 | 0.000 | 0.004 |
| total | := | c+(a*b) | total | 0.024 | 0.009 | 2.617 | 0.009 | 0.007 | 0.042 |
| abtot | := | ab/total | abtot | 0.083 | 3.144 | 0.026 | 0.979 | 0.006 | 0.325 |
kable(fit.Pars.MetaBrainPC2.CogFluid.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC2 for Fluid Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_fluidcomp_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.037 | 0.011 | -3.280 | 0.001 | -0.059 | -0.015 |
| MetaBrain.PC2 | ~ | A_Prenatal_Burden_Score | a | 0.075 | 0.011 | 6.577 | 0.000 | 0.054 | 0.098 |
| nihtbx_fluidcomp_fc.std | ~ | MetaBrain.PC2 | b | -0.042 | 0.016 | -2.636 | 0.008 | -0.074 | -0.011 |
| MetaBrain.PC1 | ~ | A_Prenatal_Burden_Score | aPC1 | -0.065 | 0.011 | -5.922 | 0.000 | -0.087 | -0.042 |
| MetaBrain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.052 | 0.012 | -4.506 | 0.000 | -0.074 | -0.028 |
| ab | := | a*b | ab | -0.003 | 0.001 | -2.423 | 0.015 | -0.006 | -0.001 |
| total | := | c+(a*b) | total | -0.040 | 0.011 | -3.556 | 0.000 | -0.062 | -0.018 |
| abtot | := | ab/total | abtot | 0.079 | 0.072 | 1.104 | 0.270 | 0.019 | 0.219 |
kable(fit.Pars.MetaBrainPC2.CogTotal.f %>% filter(label != ""), digits = 3, caption = "Mediation parameters PC2 for Total Cognition - Females") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| nihtbx_totalcomp_fc.std | ~ | A_Prenatal_Burden_Score | c | -0.030 | 0.011 | -2.662 | 0.008 | -0.050 | -0.008 |
| MetaBrain.PC2 | ~ | A_Prenatal_Burden_Score | a | 0.075 | 0.011 | 7.081 | 0.000 | 0.053 | 0.096 |
| nihtbx_totalcomp_fc.std | ~ | MetaBrain.PC2 | b | -0.037 | 0.017 | -2.214 | 0.027 | -0.070 | -0.004 |
| MetaBrain.PC1 | ~ | A_Prenatal_Burden_Score | aPC1 | -0.065 | 0.010 | -6.315 | 0.000 | -0.087 | -0.046 |
| MetaBrain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | -0.052 | 0.012 | -4.423 | 0.000 | -0.072 | -0.028 |
| ab | := | a*b | ab | -0.003 | 0.001 | -2.095 | 0.036 | -0.006 | -0.001 |
| total | := | c+(a*b) | total | -0.032 | 0.011 | -2.919 | 0.004 | -0.052 | -0.010 |
| abtot | := | ab/total | abtot | 0.085 | 0.076 | 1.108 | 0.268 | 0.012 | 0.305 |
kable(fit.Pars.MetaBrainPC1.Tot.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Total Problems - Males") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_totprob_t.std | ~ | A_Prenatal_Burden_Score | c | 0.020 | 0.009 | 2.292 | 0.022 | 0.003 | 0.036 |
| MetaBrain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.086 | 0.010 | -8.467 | 0.000 | -0.106 | -0.063 |
| cbcl_scr_syn_totprob_t.std | ~ | MetaBrain.PC1 | b | -0.059 | 0.013 | -4.530 | 0.000 | -0.084 | -0.033 |
| MetaBrain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.035 | 0.010 | 3.379 | 0.001 | 0.013 | 0.056 |
| MetaBrain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | 0.074 | 0.011 | 6.901 | 0.000 | 0.052 | 0.095 |
| ab | := | a*b | ab | 0.005 | 0.001 | 3.970 | 0.000 | 0.003 | 0.008 |
| total | := | c+(a*b) | total | 0.025 | 0.008 | 2.910 | 0.004 | 0.009 | 0.041 |
| abtot | := | ab/total | abtot | 0.206 | 0.219 | 0.943 | 0.346 | 0.092 | 0.654 |
kable(fit.Pars.MetaBrainPC1.Ext.m %>% filter(label!=""), digits = 3,caption = "Mediation parameters for Externalizing Problems - Males") %>%
kable_styling(position = "center")
| lhs | op | rhs | label | est | se | z | pvalue | ci.lower | ci.upper |
|---|---|---|---|---|---|---|---|---|---|
| cbcl_scr_syn_external_t.std | ~ | A_Prenatal_Burden_Score | c | 0.020 | 0.010 | 2.150 | 0.032 | 0.001 | 0.039 |
| MetaBrain.PC1 | ~ | A_Prenatal_Burden_Score | a | -0.086 | 0.010 | -8.595 | 0.000 | -0.106 | -0.066 |
| cbcl_scr_syn_external_t.std | ~ | MetaBrain.PC1 | b | -0.076 | 0.014 | -5.430 | 0.000 | -0.105 | -0.050 |
| MetaBrain.PC2 | ~ | A_Prenatal_Burden_Score | aPC2 | 0.035 | 0.011 | 3.230 | 0.001 | 0.014 | 0.057 |
| MetaBrain.PC3 | ~ | A_Prenatal_Burden_Score | aPC3 | 0.074 | 0.010 | 7.235 | 0.000 | 0.055 | 0.094 |
| ab | := | a*b | ab | 0.007 | 0.001 | 4.615 | 0.000 | 0.004 | 0.010 |
| total | := | c+(a*b) | total | 0.027 | 0.010 | 2.832 | 0.005 | 0.007 | 0.046 |
| abtot | := | ab/total | abtot | 0.242 | 0.441 | 0.547 | 0.584 | 0.123 | 0.836 |
Main_sig_results.F <- Main_results.F[Main_results.F$FDR<0.05,]
Main_sig_results.M <- Main_results.M[Main_results.M$FDR<0.05,]
rownames(Main_sig_results.F) <- 1:nrow(Main_sig_results.F)
rownames(Main_sig_results.M) <- 1:nrow(Main_sig_results.M)
# getting data modality
extract_character2 <- function(x) {
words <- stringr::str_split(x, " ", simplify = TRUE)
first_two_words <- paste(words[1, 1], words[1, 2])
return(first_two_words)
}
Main_sig_results.F$Type <- sapply(Main_sig_results.F$ElementDescription, extract_character2)
Main_sig_results.M$Type <- sapply(Main_sig_results.M$ElementDescription, extract_character2)
Main_sig_results.F$Brain_covar <- car::recode(Main_sig_results.F$Type,
"'Cortical volume'= 'smri_vol_scs_intracranialv_z' ;
'Subcortical volume' = 'smri_vol_scs_intracranialv';
'Cortical thickness'= 'smri_thick_cdk_mean_z';
'Cortical area'= 'smri_area_cdk_total_z';
'Sulcal depth'= 'smri_sulc_cdk_mean_z'")
Main_sig_results.M$Brain_covar <- car::recode(Main_sig_results.M$Type,
"'Cortical volume'= 'smri_vol_scs_intracranialv_z' ;
'Subcortical volume' = 'smri_vol_scs_intracranialv';
'Cortical thickness'= 'smri_thick_cdk_mean_z';
'Cortical area'= 'smri_area_cdk_total_z';
'Sulcal depth'= 'smri_sulc_cdk_mean_z'")
Main_sig_results_manualQC.F <- Main_sig_results.F[0,]
Main_sig_results_manualQC.M <- Main_sig_results.M[0,]
for( i in 1:nrow(Main_sig_results.F)){
results_manualQC.F <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = Main_sig_results.F[i,"Outcome"],
outcomesLab = Main_sig_results.F[i,"Label"],
ROI = Main_sig_results.F[i,"ElementDescription"],
Scale = T,
covars = c(covars.x,Main_sig_results.F[i,"Brain_covar"]),
data = abcd.f[abcd.f$imgincl_t1w_include==1,]
)
Main_sig_results_manualQC.F <- rbind(Main_sig_results_manualQC.F, results_manualQC.F)
}
for( i in 1:nrow(Main_sig_results.M)){
results_manualQC.M <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = Main_sig_results.M[i,"Outcome"],
outcomesLab = Main_sig_results.M[i,"Label"],
ROI = Main_sig_results.M[i,"ElementDescription"],
Scale = T,
covars = c(covars.x,Main_sig_results.M[i,"Brain_covar"]),
data = abcd.m[abcd.m$imgincl_t1w_include==1,]
)
Main_sig_results_manualQC.M <- rbind(Main_sig_results_manualQC.M, results_manualQC.M)
}
conf_interval <- function(beta, se, conf_level = 0.95) {
z <- qnorm((1 + conf_level) / 2)
lower_bound <- beta - z * se
upper_bound <- beta + z * se
data.frame(
beta = beta,
se = se,
lower_bound = lower_bound,
upper_bound = upper_bound,
conf_level = conf_level
)
}
# Females
# Original
x <- conf_interval(beta = Main_sig_results.F$Beta_Predictor, se = Main_sig_results.F$Std.error, conf_level = .99)
Main_sig_results.F$lower_bound <- x$lower_bound
Main_sig_results.F$upper_bound <- x$upper_bound
# Manual QC
x <- conf_interval(beta = Main_sig_results_manualQC.F$Beta_Predictor, se = Main_sig_results_manualQC.F$Std.error, conf_level = .99)
Main_sig_results_manualQC.F$lower_bound <- x$lower_bound
Main_sig_results_manualQC.F$upper_bound <- x$upper_bound
# Males
# Original
x <- conf_interval(beta = Main_sig_results.M$Beta_Predictor, se = Main_sig_results.M$Std.error, conf_level = .99)
Main_sig_results.M$lower_bound <- x$lower_bound
Main_sig_results.M$upper_bound <- x$upper_bound
# Manual QC
x <- conf_interval(beta = Main_sig_results_manualQC.M$Beta_Predictor, se = Main_sig_results_manualQC.M$Std.error, conf_level = .99)
Main_sig_results_manualQC.M$lower_bound <- x$lower_bound
Main_sig_results_manualQC.M$upper_bound <- x$upper_bound
Main_sig_results_manualQC.F$QC <- "Manual"
Main_sig_results.F$QC <- "Automated"
sig_results_QCcomparison.F <- rbind(
Main_sig_results_manualQC.F[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound","QC")],
Main_sig_results.F[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound","QC")]
)
Main_sig_results_manualQC.M$QC <- "Manual"
Main_sig_results.M$QC <- "Automated"
sig_results_QCcomparison.M <- rbind(
Main_sig_results_manualQC.M[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound","QC")],
Main_sig_results.M[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound","QC")]
)
r.cor.F <- cor(Main_sig_results_manualQC.F$Beta_Predictor, Main_sig_results.F$Beta_Predictor)
plotQC.F <- ggplot(sig_results_QCcomparison.F, aes(y=ElementDescription, x=Beta_Predictor, col=QC))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
theme(legend.position = 'none')+
labs(title = 'Female',
subtitle = paste("Correlation estimated betas: \nr=", round(r.cor.F, 5)),
y=""
)
r.cor.M <- cor(Main_sig_results_manualQC.M$Beta_Predictor, Main_sig_results.M$Beta_Predictor)
plotQC.M <- ggplot(sig_results_QCcomparison.M, aes(y=ElementDescription, x=Beta_Predictor, col=QC))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
labs(title = 'Male',
subtitle = paste("r=", round(r.cor.M, 5)),
y=""
)
my_legend <- cowplot::get_legend (plotQC.M)
plotQC.M <- ggplot(sig_results_QCcomparison.M, aes(y=ElementDescription, x=Beta_Predictor, col=QC))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
theme(legend.position = 'none')+
labs(title = 'Male',
subtitle = paste("Correlation estimated betas: \nr=", round(r.cor.M, 5)),
y=""
)
grid.arrange(
plotQC.F,
plotQC.M,
my_legend,
heights = c(10, 1),layout_matrix = rbind(c(1,1,2,2), c(NA,3,3,NA)),
ncol = 2
)
jpeg(filename = "eFigure5.jpg", height = 6*1.2,width = 10*1.2, units = 'in', res = 600)
grid.arrange(
plotQC.F,
plotQC.M,
my_legend,
heights = c(10, 1),layout_matrix = rbind(c(1,1,2,2), c(NA,3,3,NA)),
ncol = 2
)
dev.off()
## png
## 2
Main_sig_results_PopStrat.F <- Main_sig_results.F[0,]
Main_sig_results_PopStrat.M <- Main_sig_results.M[0,]
for( i in 1:nrow(Main_sig_results.F)){
results_PopStrat.F <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = Main_sig_results.F[i,"Outcome"],
outcomesLab = Main_sig_results.F[i,"Label"],
ROI = Main_sig_results.F[i,"ElementDescription"],
Scale = T,
covars = c(covars.x[c(1:10,22)],'demo_race_ethnicity',Main_sig_results.F[i,"Brain_covar"]),
data = abcd.f
)
Main_sig_results_PopStrat.F <- rbind(Main_sig_results_PopStrat.F, results_PopStrat.F)
}
for( i in 1:nrow(Main_sig_results.M)){
results_PopStrat.M <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = Main_sig_results.M[i,"Outcome"],
outcomesLab = Main_sig_results.M[i,"Label"],
ROI = Main_sig_results.M[i,"ElementDescription"],
Scale = T,
covars = c(covars.x[c(1:10,22)],'demo_race_ethnicity',Main_sig_results.M[i,"Brain_covar"]),
data = abcd.m
)
Main_sig_results_PopStrat.M <- rbind(Main_sig_results_PopStrat.M, results_PopStrat.M)
}
# Females
# Original
x <- conf_interval(beta = Main_sig_results.F$Beta_Predictor, se = Main_sig_results.F$Std.error, conf_level = .99)
Main_sig_results.F$lower_bound <- x$lower_bound
Main_sig_results.F$upper_bound <- x$upper_bound
# No Population stratification
x <- conf_interval(beta = Main_sig_results_PopStrat.F$Beta_Predictor, se = Main_sig_results_PopStrat.F$Std.error, conf_level = .99)
Main_sig_results_PopStrat.F$lower_bound <- x$lower_bound
Main_sig_results_PopStrat.F$upper_bound <- x$upper_bound
Main_sig_results_PopStrat.F$Ancestry <- "Reported ethnicity"
Main_sig_results.F$Ancestry <- "Genetic PCs"
sig_results_PopStrat_comparison.F <- rbind(
Main_sig_results_PopStrat.F[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound","Ancestry")],
Main_sig_results.F[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound","Ancestry")]
)
# Males
# Original
x <- conf_interval(beta = Main_sig_results.M$Beta_Predictor, se = Main_sig_results.M$Std.error, conf_level = .99)
Main_sig_results.M$lower_bound <- x$lower_bound
Main_sig_results.M$upper_bound <- x$upper_bound
# No Population stratification
x <- conf_interval(beta = Main_sig_results_PopStrat.M$Beta_Predictor, se = Main_sig_results_PopStrat.M$Std.error, conf_level = .99)
Main_sig_results_PopStrat.M$lower_bound <- x$lower_bound
Main_sig_results_PopStrat.M$upper_bound <- x$upper_bound
Main_sig_results_PopStrat.M$Ancestry <- "Reported ethnicity"
Main_sig_results.M$Ancestry <- "Genetic PCs"
sig_results_PopStrat_comparison.M <- rbind(
Main_sig_results_PopStrat.M[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound",'Ancestry')],
Main_sig_results.M[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound",'Ancestry')]
)
r.cor.F <- cor(Main_sig_results_PopStrat.F$Beta_Predictor, Main_sig_results.F$Beta_Predictor)
plotPop.F <- ggplot(sig_results_PopStrat_comparison.F, aes(y=ElementDescription, x=Beta_Predictor, col=Ancestry))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
theme(legend.position = 'none')+
labs(title = 'Female',
subtitle = paste("Correlation estimated betas:\n r=", round(r.cor.F, 5)),
y=""
)
r.cor.M <- cor(Main_sig_results_PopStrat.M$Beta_Predictor, Main_sig_results.M$Beta_Predictor)
plotPop.M <- ggplot(sig_results_PopStrat_comparison.M, aes(y=ElementDescription, x=Beta_Predictor, col=Ancestry))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
labs(title = 'Male',
subtitle = paste("Correlation estimated betas:\n r=", round(r.cor.M, 5)),
y=""
)
my_legend <- cowplot::get_legend(plotPop.M)
plotPop.M <- ggplot(sig_results_PopStrat_comparison.M, aes(y=ElementDescription, x=Beta_Predictor, col=Ancestry))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
theme(legend.position = "none")+
labs(title = 'Male',
subtitle = paste("Correlation estimated betas:\n r=", round(r.cor.M, 5)),
y=""
)
grid.arrange(
plotPop.F,
plotPop.M,
my_legend,
heights = c(10, 1),layout_matrix = rbind(c(1,1,2,2), c(NA,3,3,NA)),
ncol = 2
)
jpeg(filename = "eFigure6.jpg", height = 6*1.2,width = 10*1.2, units = 'in', res = 600)
grid.arrange(
plotQC.F,
plotQC.M,
my_legend,
heights = c(10, 1),layout_matrix = rbind(c(1,1,2,2), c(NA,3,3,NA)),
ncol = 2
)
dev.off()
## png
## 2
Main_sig_results_Tobacco.F <- Main_sig_results.F[0,]
Main_sig_results_Tobacco.M <- Main_sig_results.M[0,]
for( i in 1:nrow(Main_sig_results.F)){
results_Tobacco.F <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = Main_sig_results.F[i,"Outcome"],
outcomesLab = Main_sig_results.F[i,"Label"],
ROI = Main_sig_results.F[i,"ElementDescription"],
Scale = T,
covars = c(covars.x,'scrn_hr_smoke',Main_sig_results.F[i,"Brain_covar"]),
data = abcd.f
)
Main_sig_results_Tobacco.F <- rbind(Main_sig_results_Tobacco.F, results_Tobacco.F)
}
for( i in 1:nrow(Main_sig_results.M)){
results_Tobacco.M <-
LME_loop(
predictors = "A_Prenatal_Burden_Score_z",
outcomes = Main_sig_results.M[i,"Outcome"],
outcomesLab = Main_sig_results.M[i,"Label"],
ROI = Main_sig_results.M[i,"ElementDescription"],
Scale = T,
covars = c(covars.x,'scrn_hr_smoke',Main_sig_results.M[i,"Brain_covar"]),
data = abcd.m
)
Main_sig_results_Tobacco.M <- rbind(Main_sig_results_Tobacco.M, results_Tobacco.M)
}
# Females
# Original
x <- conf_interval(beta = Main_sig_results.F$Beta_Predictor, se = Main_sig_results.F$Std.error, conf_level = .99)
Main_sig_results.F$lower_bound <- x$lower_bound
Main_sig_results.F$upper_bound <- x$upper_bound
# Postnatal smoking
x <- conf_interval(beta = Main_sig_results_Tobacco.F$Beta_Predictor, se = Main_sig_results_Tobacco.F$Std.error, conf_level = .99)
Main_sig_results_Tobacco.F$lower_bound <- x$lower_bound
Main_sig_results_Tobacco.F$upper_bound <- x$upper_bound
Main_sig_results_Tobacco.F$Postnatal_tobacco_exposure <- "Yes"
Main_sig_results.F$Postnatal_tobacco_exposure <- "No"
Main_sig_results_Tobacco_comparison.F <- rbind(
Main_sig_results_Tobacco.F[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound","Postnatal_tobacco_exposure")],
Main_sig_results.F[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound","Postnatal_tobacco_exposure")]
)
# Males
# Original
x <- conf_interval(beta = Main_sig_results.M$Beta_Predictor, se = Main_sig_results.M$Std.error, conf_level = .99)
Main_sig_results.M$lower_bound <- x$lower_bound
Main_sig_results.M$upper_bound <- x$upper_bound
# Postnatal smoking
x <- conf_interval(beta = Main_sig_results_Tobacco.M$Beta_Predictor, se = Main_sig_results_Tobacco.M$Std.error, conf_level = .99)
Main_sig_results_Tobacco.M$lower_bound <- x$lower_bound
Main_sig_results_Tobacco.M$upper_bound <- x$upper_bound
Main_sig_results_Tobacco.M$Postnatal_tobacco_exposure <- "Yes"
Main_sig_results.M$Postnatal_tobacco_exposure <- "No"
Main_sig_results_Tobacco_comparison.M <- rbind(
Main_sig_results_Tobacco.M[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound",'Postnatal_tobacco_exposure')],
Main_sig_results.M[,c("ElementDescription", "Beta_Predictor","lower_bound","upper_bound",'Postnatal_tobacco_exposure')]
)
r.cor.F <- cor(Main_sig_results_Tobacco.F$Beta_Predictor, Main_sig_results.F$Beta_Predictor)
plotTobacco.F <- ggplot(Main_sig_results_Tobacco_comparison.F, aes(y=ElementDescription, x=Beta_Predictor, col=Postnatal_tobacco_exposure))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
theme(legend.position = 'none')+
labs(title = 'Female',
subtitle = paste("Correlation estimated betas: \nr=", round(r.cor.F, 5)),
y=""
)
r.cor.M <- cor(Main_sig_results_Tobacco.M$Beta_Predictor, Main_sig_results.M$Beta_Predictor)
plotTobacco.M <- ggplot(Main_sig_results_Tobacco_comparison.M, aes(y=ElementDescription, x=Beta_Predictor, col=Postnatal_tobacco_exposure))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
labs(title = 'Male',
subtitle = paste("r=", round(r.cor.M, 5)),
y=""
)
my_legend <- cowplot::get_legend (plotTobacco.M)
plotTobacco.M <- ggplot(Main_sig_results_Tobacco_comparison.M, aes(y=ElementDescription, x=Beta_Predictor, col=Postnatal_tobacco_exposure))+
geom_point(position = position_dodge(width = 0.25))+
geom_errorbarh(aes(xmin = lower_bound, xmax = upper_bound), height = 0.2, position = position_dodge(width = 0.25))+
scale_color_manual(values = c('#9EB4D3','#FFBE98'))+
theme_bw()+
theme(legend.position = "none")+
labs(title = 'Male',
subtitle = paste("r=", round(r.cor.M, 5)),
y=""
)
grid.arrange(
plotTobacco.F,
plotTobacco.M,
my_legend,
heights = c(10, 1),layout_matrix = rbind(c(1,1,2,2), c(NA,3,3,NA)),
ncol = 2
)
jpeg(filename = "eFigure7.jpg", height = 6*1.2,width = 10*1.2, units = 'in', res = 600)
grid.arrange(
plotQC.F,
plotQC.M,
my_legend,
heights = c(10, 1),layout_matrix = rbind(c(1,1,2,2), c(NA,3,3,NA)),
ncol = 2
)
dev.off()
## png
## 2